Files
2024-11-20 15:21:28 +01:00

11 lines
202 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace EPOOutline.Demo
{
public interface ICollectable
{
void Collect(GameObject collector);
}
}