Created
March 15, 2014 21:03
-
-
Save Koshmaar/9573883 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// class Enemies, function Update(): | |
if (CONFIG::debug) | |
{ | |
if (FlxG.keys.SHIFT && FlxG.keys.justPressed("D")) | |
{ | |
// kill all enemies | |
for each ( var enemy : Enemy in members) | |
{ | |
if (enemy.alive && enemy.exists) | |
enemy.baloon.TypedEverything(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment