mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-19 03:39:50 +00:00
20 lines
384 B
C#
20 lines
384 B
C#
using UnityEngine;
|
|
|
|
namespace QSB.WorldSync;
|
|
|
|
public interface IWorldObject
|
|
{
|
|
int ObjectId { get; }
|
|
string Name { get; }
|
|
MonoBehaviour AttachedObject { get; }
|
|
|
|
void OnRemoval();
|
|
bool ShouldDisplayDebug();
|
|
string ReturnLabel();
|
|
void DisplayLines();
|
|
|
|
/// <summary>
|
|
/// called on the host to send over initial state messages
|
|
/// </summary>
|
|
void SendInitialState(uint to);
|
|
} |