Upload from upload_mods.ps1
This commit is contained in:
18
Scripts/Core/CustomPlayerActionBase.cs
Normal file
18
Scripts/Core/CustomPlayerActionBase.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
public abstract class CustomPlayerActionVersionBase : PlayerActionsBase
|
||||
{
|
||||
public enum ControllerActionType
|
||||
{
|
||||
None,
|
||||
OnFoot,
|
||||
Vehicle
|
||||
}
|
||||
|
||||
public virtual void InitActionSetRelations()
|
||||
{
|
||||
|
||||
}
|
||||
public int Version { get; protected set; } = 1;
|
||||
public virtual ControllerActionType ControllerActionDisplay { get; } = ControllerActionType.None;
|
||||
}
|
||||
Reference in New Issue
Block a user