CORE dashboard + a lot of changes

This commit is contained in:
2026-06-22 20:09:15 +02:00
parent 19d6bd934a
commit 89fa0b23b2
101 changed files with 1525 additions and 177 deletions
@@ -0,0 +1,19 @@
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;
}
}
}