We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d7824f commit 74f236fCopy full SHA for 74f236f
Source/Statics/Game.cs
@@ -249,6 +249,16 @@ public static class PlayerSettings
249
public static string LanguageCode => "en";
250
}
251
252
+ /// <value>
253
+ /// Adds an amount of strikes on the bomb.
254
+ /// </value>
255
+ public static Action<GameObject, int> AddStrikes => (gameObject, amount) => Logger.Self($"Adding the bomb's strike count with {amount}.");
256
+
257
258
+ /// Sets an amount of strikes on the bomb.
259
260
+ public static Action<GameObject, int> SetStrikes => (gameObject, amount) => Logger.Self($"Setting the bomb's strike count to {amount}.");
261
262
/// <value>
263
/// Gets the game's internal bomb component, not to be mistaken with <see cref="KMBomb"/>.
264
/// </value>
0 commit comments