Files
Net.Project.B/Src/WorldNode/UnitySubwayPlatformNode.cs
CortexCore 3f9d9f19ce 1
2025-04-14 15:39:24 +08:00

23 lines
355 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
#if UNITY_5_3_OR_NEWER
using UnityEngine;
namespace Net.Project.B
{
[Serializable]
public class UnitySubwayPlatformNode : IWorldNode
{
[SerializeField] private int stopTime;
public int StopTime => stopTime;
}
}
#endif