2024-11-19 11:48:21 +01:00

8 lines
142 B
C#

namespace Gley.UrbanSystem.Internal
{
public interface IDestroyable
{
void Assign();
void OnDestroy();
}
}