Files
2024-11-19 11:48:21 +01:00

12 lines
210 B
C#

namespace Gley.TrafficSystem.Internal
{
public enum CollidingObjects
{
TrafficVehicle,
OtherTrafficObject,
Player,
Building,
DynamicObject
}
}