generated from ShadowMario/FNF-PsychEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[QOL] Discord Client Rewrite (kinda...)
- Loading branch information
Showing
12 changed files
with
367 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import funkin.backend.utils.Paths; | ||
|
||
@:final class Constants { | ||
@:final class Constants | ||
{ | ||
public static inline final DEFAULT_DISCORD_ID:String = "1095422496473358356"; | ||
|
||
public static inline final SOUND_EXT:String = #if web "mp3" #else "ogg" #end; | ||
public static inline final VIDEO_EXT:String = "mp4"; | ||
|
||
public static inline final DEFAULT_CHARACTER:String = 'bf'; // if the character is missing. | ||
|
||
public static var DEFAULT_FONT(get, null):String = null; | ||
@:noCompletion private inline static function get_DEFAULT_FONT():String { | ||
if (DEFAULT_FONT == null) | ||
DEFAULT_FONT = Paths.font("vcr.ttf"); | ||
return DEFAULT_FONT; | ||
} | ||
} | ||
public static var DEFAULT_FONT(get, null):String; | ||
@:noCompletion private inline static function get_DEFAULT_FONT():String | ||
return DEFAULT_FONT == null ? Paths.font("vcr.ttf") : DEFAULT_FONT; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.