public static TaskDiscoverTeleport Require(
     ProtoObjectTeleport protoObjectTeleport,
     ushort count       = 1,
     string description = null)
 {
     return(new(protoObjectTeleport, count, description));
 }
 private TaskDiscoverTeleport(
     ProtoObjectTeleport protoObjectTeleport,
     ushort count,
     string description)
     : base(count,
            description)
 {
     this.ProtoObjectTeleport = protoObjectTeleport;
 }