19 lines
307 B
C#
Raw Normal View History

2021-05-10 14:30:38 +01:00
using UnityEngine;
2021-04-16 11:40:13 +01:00
namespace QSB.WorldSync
{
public interface IWorldObject
{
int ObjectId { get; }
2021-02-08 20:04:14 +00:00
string Name { get; }
MonoBehaviour AttachedObject { get; }
2021-02-09 21:35:31 +00:00
void OnRemoval();
bool ShouldDisplayDebug();
2021-12-28 18:06:34 +00:00
string ReturnLabel();
void DisplayLines();
2022-01-21 14:56:45 -08:00
void SendInitialState(uint to);
}
}