备份CatanBuilding瘦身独立工程
This commit is contained in:
22
Assets/Scripts/GampPlay/FishingB/IFishingState.cs
Normal file
22
Assets/Scripts/GampPlay/FishingB/IFishingState.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
public enum FishingStateName
|
||||
{
|
||||
Idle,
|
||||
Move,
|
||||
Jump,
|
||||
UIEating,
|
||||
SpEating,
|
||||
MaxCombo,
|
||||
Escape
|
||||
}
|
||||
public interface IFishingState
|
||||
{
|
||||
public FishingStateName fishingState { get; }
|
||||
FishingBehaviorB fishingBehavior { get; set; }
|
||||
float fishMoveSpeed { get; set; }
|
||||
void InState(FishingBehaviorB fishingBehavior, FishingData fishingData);
|
||||
void UpdateState();
|
||||
void OutState();
|
||||
}
|
||||
Reference in New Issue
Block a user