10 lines
179 B
C#
10 lines
179 B
C#
|
namespace EntityStates.Mage.Weapon;
|
||
|
|
||
|
public class ChargeIcebomb : BaseChargeBombState
|
||
|
{
|
||
|
protected override BaseThrowBombState GetNextState()
|
||
|
{
|
||
|
return new ThrowIcebomb();
|
||
|
}
|
||
|
}
|