mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 12:08:52 +00:00
17 lines
264 B
C#
17 lines
264 B
C#
using UnityEngine;
|
|
|
|
namespace QSB.WorldSync
|
|
{
|
|
public interface IWorldObject
|
|
{
|
|
int ObjectId { get; }
|
|
string Name { get; }
|
|
|
|
void OnRemoval();
|
|
MonoBehaviour ReturnObject();
|
|
bool ShouldDisplayDebug();
|
|
string ReturnLabel();
|
|
void DisplayLines();
|
|
}
|
|
}
|