8 lines
92 B
C#
Raw Normal View History

namespace QSB.WorldSync
{
public interface IWorldObject
{
int ObjectId { get; }
}
}