using System; using System.Collections.Generic; namespace ET { public class Combat : Entity { List _sources; public List sources => _sources ??= Parent.GetComponents(); public void Destory() { _sources?.Clear(); _sources = null; } } }