1
This commit is contained in:
23
Src/WorldNode/UnitySubwayPlatformNode.cs
Normal file
23
Src/WorldNode/UnitySubwayPlatformNode.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
Reference in New Issue
Block a user