Skip to content

Commit

Permalink
Haxelib release 2.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Gama11 committed Mar 28, 2020
1 parent f6ef1f4 commit c5e4d6c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.6.4 (March 28, 2020)
------------------------------
* Minor code style update

2.6.3 (August 21, 2019)
------------------------------
* Removed the `diagnosticsPathFilter` from VSCode settings
Expand Down
4 changes: 2 additions & 2 deletions default/source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import flixel.FlxState;

class PlayState extends FlxState
{
override public function create():Void
override public function create()
{
super.create();
}

override public function update(elapsed:Float):Void
override public function update(elapsed:Float)
{
super.update(elapsed);
}
Expand Down
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"license": "MIT",
"tags": ["game", "openfl", "flash", "neko", "cpp", "android", "ios", "cross", "vscode"],
"description": "Templates for HaxeFlixel projects",
"version": "2.6.3",
"releasenote": "Removed the diagnosticsPathFilter from VSCode settings.",
"version": "2.6.4",
"releasenote": "Minor code style update.",
"contributors": ["haxeflixel", "Gama11"],
"dependencies": {}
}

0 comments on commit c5e4d6c

Please sign in to comment.