6 lines
115 B
C#
6 lines
115 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public abstract class ShootInputBase : MonoBehaviour
|
||
|
{
|
||
|
public abstract bool IsShooting();
|
||
|
}
|