mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
20 lines
445 B
C#
20 lines
445 B
C#
using Robust.Shared.Timing;
|
|
|
|
namespace Robust.Client.State
|
|
{
|
|
public abstract class State
|
|
{
|
|
/// <summary>
|
|
/// Screen is being (re)enabled.
|
|
/// </summary>
|
|
public abstract void Startup();
|
|
|
|
/// <summary>
|
|
/// Screen is being disabled (NOT Destroyed).
|
|
/// </summary>
|
|
public abstract void Shutdown();
|
|
|
|
public virtual void FrameUpdate(FrameEventArgs e) { }
|
|
}
|
|
}
|