Files
BITKit/Src/Core/WorldNode/WorldInfoPlayerStartNode.cs
CortexCore 4ba741408d 1
2024-11-03 16:38:17 +08:00

19 lines
417 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
namespace BITKit.WorldNode
{
[Serializable]
public struct WorldInfoPlayerStart:IWorldNode
{
public static WorldInfoPlayerStart Current { get; set; }
public int Id { get; set; }
public object WorldObject { get; set; }
public void Initialize()
{
Current = this;
}
}
}