File tree Expand file tree Collapse file tree 4 files changed +2
-3
lines changed Expand file tree Collapse file tree 4 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ package
20
20
private var generationTimer: Number = 0 ;
21
21
private var maxGenerationTimer: Number = 0.2 ;
22
22
private var winText: FlxText;
23
- private var playerDead: Boolean = false ;
24
23
private var coords: Array = new Array ();
25
24
26
25
override public function create ():void
@@ -40,7 +39,7 @@ package
40
39
new Point (FlxG. width / 2 - 16 ,FlxG. height - 4 )];
41
40
42
41
// Init blocks from coords
43
- initBlocksFromCoords(coords );
42
+ initBlocksFromCoords();
44
43
45
44
winText = new FlxText(0 ,0 ,40 );
46
45
winText. text = "you\n have\n not\n won\n :(" ;
@@ -50,7 +49,7 @@ package
50
49
}
51
50
52
51
53
- public function initBlocksFromCoords (coords : Array ):void
52
+ public function initBlocksFromCoords ():void
54
53
{
55
54
var point: Point ;
56
55
for (var i: String in coords)
You can’t perform that action at this time.
0 commit comments