10 lines
177 B
C#
10 lines
177 B
C#
|
namespace EntityStates.Huntress;
|
||
|
|
||
|
public class BeginArrowRain : BaseBeginArrowBarrage
|
||
|
{
|
||
|
protected override EntityState InstantiateNextState()
|
||
|
{
|
||
|
return new ArrowRain();
|
||
|
}
|
||
|
}
|