13 lines
240 B
C#
13 lines
240 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Simulator.Data.Transport
|
|
{
|
|
[Serializable]
|
|
public class PathDataClass
|
|
{
|
|
public string to = "";
|
|
public string from = "";
|
|
public bool bidirectional = true;
|
|
}
|
|
} |