mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 08:44:47 +00:00
15 lines
321 B
Haxe
15 lines
321 B
Haxe
package funkin.util;
|
|
|
|
import flixel.util.FlxColor;
|
|
|
|
class Constants
|
|
{
|
|
/**
|
|
* The scale factor to use when increasing the size of pixel art graphics.
|
|
*/
|
|
public static final PIXEL_ART_SCALE = 6;
|
|
|
|
public static final HEALTH_BAR_RED:FlxColor = 0xFFFF0000;
|
|
public static final HEALTH_BAR_GREEN:FlxColor = 0xFF66FF33;
|
|
}
|