using System; using System.Collections.Generic; namespace MoonTools.ECS { internal class ComponentDepotState { public Dictionary StorageStates = new Dictionary(); public Dictionary> FilterStates = new Dictionary>(); } }