JohnCorby 07aee5c3ea Revert "change ShouldDisplayLabel to property"
This reverts commit 6c301049516190c559dc1bf0d485a53c6aa79892.
2021-12-28 16:13:21 -08:00

16 lines
241 B
C#

using UnityEngine;
namespace QSB.WorldSync
{
public interface IWorldObject
{
int ObjectId { get; }
string Name { get; }
void OnRemoval();
MonoBehaviour ReturnObject();
bool ShouldDisplayLabel();
string ReturnLabel();
}
}