1
0
mirror of https://github.com/misternebula/quantum-space-buddies.git synced 2025-03-13 10:13:50 +00:00

15 lines
207 B
C#

using UnityEngine;
namespace QSB.WorldSync
{
public interface IWorldObject
{
int ObjectId { get; }
string Name { get; }
void PostInit();
void OnRemoval();
MonoBehaviour ReturnObject();
}
}