Files
Simon Lübeß 5852e11ccb Start of edit mode scripts
- Initialize script instances in edit mode
- Run OnCreate and OnUpdate for Entities with RunInEditMode-Attribute
2023-12-02 00:28:04 +01:00

14 lines
339 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace GlitchyEngine.Editor;
/// <summary>
/// Specifies that the OnCreate- and OnUpdate-Methods of this entity are to be be executed in the editor.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public sealed class RunInEditModeAttribute : Attribute
{
}