mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-07 13:05:41 +00:00
18 lines
293 B
C#
18 lines
293 B
C#
using UnityEngine;
|
|
|
|
namespace QSB.WorldSync
|
|
{
|
|
public interface IWorldObject
|
|
{
|
|
int ObjectId { get; }
|
|
string Name { get; }
|
|
|
|
void OnRemoval();
|
|
MonoBehaviour ReturnObject();
|
|
bool ShouldDisplayLabel();
|
|
string ReturnLabel();
|
|
bool ShouldDisplayLines();
|
|
void DisplayLines();
|
|
}
|
|
}
|