using System; using UnityEngine; namespace RPGCore.Core { /// /// Extend this abstract class to create new module for global logic. /// [Serializable] public abstract class GlobalModule : MonoBehaviour { } }