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