BITFALL/Assets/WSM Game Studio/Train Controller_v3/Shared/Scripts/Extensions Interfaces/ITrainCarCoupler.cs

12 lines
215 B
C#

using UnityEngine;
namespace WSMGameStudio.RailroadSystem
{
public interface ITrainCarCoupler
{
bool IsBackJoint { get; }
bool IsLocomotive { get; }
bool IsWagon { get; }
}
}