14 lines
188 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; }
2021-02-09 21:35:31 +00:00
void OnRemoval();
2021-04-16 11:40:13 +01:00
MonoBehaviour ReturnObject();
}
}