mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-26 18:35:34 +00:00
15 lines
207 B
C#
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();
|
|
}
|
|
}
|