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