using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IRenderSettingPreset { string GetName(); void SetName(string name); void AddChild(string child); HashSet<string> GetChildren(); }