Files
real-shooter/Assets/Scripts/Pickups/IPickable.cs
2022-05-04 23:50:07 +07:00

6 lines
123 B
C#
Executable File

using UnityEngine;
public interface IPickable
{
PickUpType type { get; }
void PickObject(GameObject obj);
}