6 lines
123 B
C#
Executable File
6 lines
123 B
C#
Executable File
using UnityEngine;
|
|
public interface IPickable
|
|
{
|
|
PickUpType type { get; }
|
|
void PickObject(GameObject obj);
|
|
} |