using System; using System.Collections; using System.Collections.Generic; using UnityEditor; using UnityEngine; namespace DSM.Editor { [CreateAssetMenu(fileName = "Data", menuName = "DSM/DSMObject", order = 1)] public class DSMObj : ScriptableObject { public GameObject gameObjectFps; public bool keepOldVersion; } }