10 lines
191 B
C#
10 lines
191 B
C#
|
namespace EntityStates;
|
||
|
|
||
|
public class GenericCharacterVehicleSeated : BaseState
|
||
|
{
|
||
|
public override InterruptPriority GetMinimumInterruptPriority()
|
||
|
{
|
||
|
return InterruptPriority.Vehicle;
|
||
|
}
|
||
|
}
|