9 lines
142 B
C#
9 lines
142 B
C#
using UnityEngine;
|
|
|
|
namespace EPOOutline.Demo
|
|
{
|
|
public interface ICollectable
|
|
{
|
|
void Collect(GameObject collector);
|
|
}
|
|
} |