using System; namespace SUISSEngine { public class ChildReference : SelfReference { public ChildReference(bool optional) : base(optional, true, false) { } public ChildReference() : this(false) { } } }