11 lines
242 B
C#
11 lines
242 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class CharacterObject : MonoBehaviour
|
|
{
|
|
[SerializeField] private Transform shootingPoint;
|
|
|
|
public Transform GetShootingPoint() => shootingPoint;
|
|
}
|