Files
real-shooter/Assets/Scripts/Pickups/IPickable.cs
2022-04-12 11:54:05 +07:00

7 lines
139 B
C#
Executable File

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