1
This commit is contained in:
20
Src/WorldNode/UnitySubwayPathNode.cs
Normal file
20
Src/WorldNode/UnitySubwayPathNode.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using BITKit.WorldNode;
|
||||
|
||||
#if UNITY_5_3_OR_NEWER
|
||||
using UnityEngine;
|
||||
|
||||
namespace Net.Project.B.WorldNode
|
||||
{
|
||||
|
||||
[Serializable]
|
||||
public class UnitySubwayPathNode : IWorldNode
|
||||
{
|
||||
[SerializeField] private Transform[] platforms;
|
||||
public Transform[] Platforms => platforms;
|
||||
}
|
||||
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user