BITKit/Src/Core/WorldNode/IWorldNode.cs

20 lines
345 B
C#
Raw Normal View History

2024-11-03 16:38:17 +08:00
using System.Collections;
using System.Collections.Generic;
namespace BITKit.WorldNode
{
/// <summary>
/// 世界节点
/// </summary>
public interface IWorldNode
{
public int Id { get; set; }
public object WorldObject { get; set; }
public void Initialize()
{
}
}
}