19 lines
480 B
C#
19 lines
480 B
C#
using System;
|
|
|
|
namespace RPGCore.Core
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class ObjectModuleAttribute : Attribute
|
|
{
|
|
public string name;
|
|
public string description;
|
|
public bool required;
|
|
|
|
public ObjectModuleAttribute(string name, string description, bool required = false)
|
|
{
|
|
this.name = name;
|
|
this.description = description;
|
|
this.required = required;
|
|
}
|
|
}
|
|
} |