using System.Collections.Generic; using MfGames.Gallium; namespace MfGames.Nitride.IO.Paths; /// /// A wrapper around List<Entity> for handling direct children lists. /// public class DirectChildEntityList : List { /// public DirectChildEntityList() { } /// public DirectChildEntityList(IEnumerable collection) : base(collection) { } }