BITKit/Src/Core/WorldNode/WorldInfoNpcStartNode.cs

17 lines
355 B
C#
Raw Normal View History

2025-02-24 23:02:43 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
namespace BITKit.WorldNode
{
[Serializable]
public struct WorldInfoNpcStartNode:IWorldNode
{
public string Address;
public int Id { get; set; }
public object WorldObject { get; set; }
public void Initialize()
{
}
}
}