10 lines
178 B
C#
10 lines
178 B
C#
|
namespace EntityStates.Railgunner.Scope;
|
||
|
|
||
|
public class ActiveScopeLight : BaseActive
|
||
|
{
|
||
|
protected override BaseWindDown GetNextState()
|
||
|
{
|
||
|
return new WindDownScopeLight();
|
||
|
}
|
||
|
}
|