diff --git a/Project.xml b/Project.xml index c7bfe0a..e37a6e9 100644 --- a/Project.xml +++ b/Project.xml @@ -71,10 +71,11 @@ - + + - + diff --git a/README.md b/README.md index 594cb15..a18f721 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,11 @@

-## Anyone who wants to be a contributor to the engine just ask me on my discord on my profile ## Credits: -- GuineaPigUuhh for the Code (Yippeee!) - [hxCodec](https://github.com/polybiusproxy/hxCodec) for the .MP4 Video Loader. - [FlxAnimate](https://github.com/Dot-Stuff/flxanimate/) Team for the Animate Atlas Support. -- Aidan63 for [discord-rpc](https://github.com/Aidan63/linc_discord-rpc). +- [Aidan63](https://github.com/Aidan63) for [discord-rpc](https://github.com/Aidan63/linc_discord-rpc). +- [JWambaugh](https://github.com/JWambaugh) for [TJSON](https://github.com/JWambaugh/TJSON). # Build instructions 1. install [Git](https://git-scm.com/download/win) diff --git a/install-libs/Main.hx b/install-libs/Main.hx index a09a9c4..da8bc70 100644 --- a/install-libs/Main.hx +++ b/install-libs/Main.hx @@ -10,6 +10,7 @@ class Main new Lib("polymod", "1.7.0"), new Lib("flxanimate", "", "https://github.com/Dot-Stuff/flxanimate"), new Lib("discord_rpc", "", "https://github.com/Aidan63/linc_discord-rpc"), + new Lib("tjson", "1.4.0"), new Lib("hxcodec", "2.5.1") ]; diff --git a/source/Character.hx b/source/Character.hx index 51b6e04..7519d8c 100644 --- a/source/Character.hx +++ b/source/Character.hx @@ -7,10 +7,9 @@ import flixel.animation.FlxBaseAnimation; import flixel.graphics.frames.FlxAtlasFrames; import flixel.util.FlxColor; import flixel.util.FlxSort; -import haxe.Json; -import haxe.format.JsonParser; import haxe.io.Path; import haxe.macro.Type.AnonType; +import tjson.TJSON as Json; using StringTools; diff --git a/source/FNFManager.hx b/source/FNFManager.hx index 1e806b4..8bd0736 100644 --- a/source/FNFManager.hx +++ b/source/FNFManager.hx @@ -1,9 +1,8 @@ package; -import haxe.Json; -import haxe.format.JsonParser; import haxe.macro.Type.AnonType; import sys.FileSystem; +import tjson.TJSON as Json; using StringTools; diff --git a/source/Settings.hx b/source/Settings.hx index 294f002..fdf4621 100644 --- a/source/Settings.hx +++ b/source/Settings.hx @@ -1,9 +1,7 @@ package; import flixel.FlxG; -import haxe.Json; -import haxe.format.JsonParser; -import haxe.macro.Type.AnonType; +import tjson.TJSON as Json; using StringTools; diff --git a/source/Song.hx b/source/Song.hx index 7f8f97b..8e7331a 100644 --- a/source/Song.hx +++ b/source/Song.hx @@ -1,9 +1,8 @@ package; import Section.SwagSection; -import haxe.Json; -import haxe.format.JsonParser; import lime.utils.Assets; +import tjson.TJSON as Json; using StringTools;