mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 00:32:43 +00:00
11 lines
272 B
C#
11 lines
272 B
C#
namespace QSB.WorldSync
|
|
{
|
|
public abstract class WorldObject<T> : IWorldObject
|
|
where T : UnityEngine.Object
|
|
{
|
|
public int ObjectId { get; protected set; }
|
|
public T AttachedObject { get; protected set; }
|
|
|
|
public abstract void Init(T attachedObject, int id);
|
|
}
|
|
} |