Mister_Nebula b10cf20ee4 fix stuff
2021-02-08 20:04:14 +00:00

9 lines
115 B
C#

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