This commit is contained in:
2026-04-25 23:37:10 +02:00
commit 19d6bd934a
476 changed files with 9198 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using UnityEngine;
namespace RPGCore.Core
{
/// <summary>
/// Extend this abstract class to create new module for global logic.
/// </summary>
[Serializable]
public abstract class GlobalModule : MonoBehaviour
{
}
}