mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 14:17:59 +01:00
28 lines
482 B
C#
28 lines
482 B
C#
|
using Fie.Object;
|
||
|
using System;
|
||
|
|
||
|
namespace Fie.Enemies.HoovesRaces.QueenChrysalis
|
||
|
{
|
||
|
public class FieStateMachineQueenChrysalisBaseAttack : FieStateMachineGameCharacterBase
|
||
|
{
|
||
|
private bool _isEnd;
|
||
|
|
||
|
public override void updateState<T>(ref T gameCharacter)
|
||
|
{
|
||
|
if (gameCharacter is FieQueenChrysalis)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override bool isEnd()
|
||
|
{
|
||
|
return _isEnd;
|
||
|
}
|
||
|
|
||
|
public override Type getNextState()
|
||
|
{
|
||
|
return typeof(FieStateMachineEnemiesAttackIdle);
|
||
|
}
|
||
|
}
|
||
|
}
|