using RMC.Core.Exceptions; using UnityEngine; namespace RMC.Backend.Baas { // Class Attributes ---------------------------------- /// /// The configuration for the backend system. /// public abstract class Configuration : ScriptableObject { // Properties ------------------------------------ // Fields ---------------------------------------- // Methods --------------------------------------- public virtual bool IsValid() { throw new MustOverrideMethodException(this); } } }