mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
16 lines
418 B
C#
16 lines
418 B
C#
namespace GlitchyEngine.Core;
|
|
|
|
public class Application
|
|
{
|
|
/// <summary>
|
|
/// Returns true when the script is running in edit mode.
|
|
/// </summary>
|
|
/// <seealso cref="IsPlaying"/>
|
|
public bool IsEditor = false;
|
|
/// <summary>
|
|
/// Returns true when the script is running in play mode or in the player.
|
|
/// </summary>
|
|
/// <seealso cref="IsEditor"/>
|
|
public bool IsPlaying = false;
|
|
}
|