Exemplo n.º 1
0
 public static GameAction TestInstant(string message) =>
 InstantAction
 .Create("Test Instant", () => Debug.Log("Instant Action: " + message));
Exemplo n.º 2
0
 public static GameAction TestInstantWithError(Exception error) =>
 InstantAction
 .Create("Test Instant With Error", () => throw error);