mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
22 lines
496 B
C#
22 lines
496 B
C#
using System.Collections.Generic;
|
|
using FullInspector;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public abstract class BaseFollowBaseState : State<MainCameraFollowState>
|
|
{
|
|
[InspectorCollapsedFoldout]
|
|
public HashSet<BaseFollowShortState> maskedShortStates;
|
|
|
|
public bool cannotBeSkipped { get; protected set; }
|
|
|
|
public BaseFollowBaseState(MainCameraFollowState followState)
|
|
: base(followState)
|
|
{
|
|
maskedShortStates = new HashSet<BaseFollowShortState>();
|
|
}
|
|
|
|
public abstract void ResetState();
|
|
}
|
|
}
|