12 lines
215 B
C#
12 lines
215 B
C#
using UnityEngine;
|
|
|
|
namespace WSMGameStudio.RailroadSystem
|
|
{
|
|
public interface ITrainCarCoupler
|
|
{
|
|
bool IsBackJoint { get; }
|
|
bool IsLocomotive { get; }
|
|
bool IsWagon { get; }
|
|
}
|
|
}
|