Exemplo n.º 1
0
 public override OutputMap[] Outputs(ConnectionMapper connections) => new[]
 {
     connections.Connect(ref Template.Owner, ref Owner),
     connections.Connect(ref Template.Building, ref Building)
 };
Exemplo n.º 2
0
 public override InputMap[] Inputs(ConnectionMapper connections) => new[]
 {
     connections.Connect(ref Template.Value, ref Value),
 };
Exemplo n.º 3
0
 public override InputMap[] Inputs(ConnectionMapper graph) => new[]
 {
     graph.Connect(ref Template.Repetitions, ref Repetitions),
 };
Exemplo n.º 4
0
 public override OutputMap[] Outputs(ConnectionMapper connections) => new[]
 {
     connections.Connect(ref Template.Output, ref Output)
 };
Exemplo n.º 5
0
 public override InputMap[] Inputs(ConnectionMapper connections) => new[]
 {
     connections.Connect(ref Template.Character, ref Character),
 };
Exemplo n.º 6
0
 public override OutputMap[] Outputs(ConnectionMapper connections) => new[]
 {
     connections.Connect(ref Template.Neighbours, ref Neighbours),
 };
Exemplo n.º 7
0
 public override InputMap[] Inputs(ConnectionMapper connections) => new[]
 {
     connections.Connect(ref Template.Building, ref Building)
 };
Exemplo n.º 8
0
 public override OutputMap[] Outputs(ConnectionMapper connections) => new[]
 {
     connections.Connect(ref Template.Players, ref Players),
     connections.Connect(ref Template.Building, ref Building)
 };