This commit is contained in:
CortexCore
2025-02-24 23:02:49 +08:00
parent 9775bdd099
commit b07ae4fea7
82 changed files with 1021 additions and 386 deletions

View File

@@ -0,0 +1,40 @@
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.StateMachine;
namespace Project.B.Player
{
public interface IPlayerControlMode
{
}
public struct PlayerEmptyMode : IPlayerControlMode
{
}
public struct PlayerWalkMode : IPlayerControlMode
{
}
public struct PlayerCarMode : IPlayerControlMode
{
}
public struct PlayerTankMode : IPlayerControlMode
{
}
public struct PlayerPlaneMode : IPlayerControlMode
{
}
public struct PlayerHelicopterMode : IPlayerControlMode
{
}
public struct PlayerSpotterScopeMode : IPlayerControlMode
{
}
}