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