14 lines
383 B
C#
14 lines
383 B
C#
//$ Copyright 2015-22, Code Respawn Technologies Pvt Ltd - All Rights Reserved $//
|
|
namespace DungeonArchitect
|
|
{
|
|
[System.AttributeUsage(System.AttributeTargets.Class)]
|
|
public class MetaAttribute : System.Attribute
|
|
{
|
|
public string displayText;
|
|
public MetaAttribute(string displayText)
|
|
{
|
|
this.displayText = displayText;
|
|
}
|
|
}
|
|
}
|