mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
14 lines
366 B
C#
14 lines
366 B
C#
using System;
|
|
|
|
namespace GlitchyEngine.Core;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = true)]
|
|
public class EngineClassAttribute : Attribute
|
|
{
|
|
public string EngineClassName { get; }
|
|
|
|
public EngineClassAttribute(string engineClassName)
|
|
{
|
|
EngineClassName = engineClassName;
|
|
}
|
|
} |