mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
15 lines
281 B
C#
15 lines
281 B
C#
namespace Robust.Client.State
|
|
{
|
|
// Dummy state that is only used to make sure there always is *a* state.
|
|
public class DefaultState : State
|
|
{
|
|
public override void Startup()
|
|
{
|
|
}
|
|
|
|
public override void Shutdown()
|
|
{
|
|
}
|
|
}
|
|
}
|