diff options
author | Indrajith K L | 2022-03-22 02:20:02 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-22 02:20:02 +0530 |
commit | f5e60ac6142f5f3d71f5a6edc581094df840f12e (patch) | |
tree | 68b7071b9862082ce3d0943b8b1f76744e411642 /source/utils | |
download | YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.tar.gz YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.tar.bz2 YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.zip |
Initial Commit
* Basic Entity System Implemented
Diffstat (limited to 'source/utils')
-rw-r--r-- | source/utils/Constants.hx | 7 | ||||
-rw-r--r-- | source/utils/Debug.hx | 11 |
2 files changed, 18 insertions, 0 deletions
diff --git a/source/utils/Constants.hx b/source/utils/Constants.hx new file mode 100644 index 0000000..c151e55 --- /dev/null +++ b/source/utils/Constants.hx @@ -0,0 +1,7 @@ +package utils; + +class Constants +{ + public static var defaultFont:String = AssetPaths.C800__ttf; + public static var stylyzedFont:String = AssetPaths.Lazer84__ttf; +} diff --git a/source/utils/Debug.hx b/source/utils/Debug.hx new file mode 100644 index 0000000..6c0b831 --- /dev/null +++ b/source/utils/Debug.hx @@ -0,0 +1,11 @@ +package utils; + +import lime.utils.Log; + +class Debug +{ + public static function log(message:Any) + { + Log.println(message); + } +} |