mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 08:44:47 +00:00
10 lines
335 B
Haxe
10 lines
335 B
Haxe
package funkin.play.cutscene.dialogue;
|
|
|
|
/**
|
|
* A script that can be tied to a DialogueBox.
|
|
* Create a scripted class that extends DialogueBox to use this.
|
|
* This allows you to customize how a specific dialogue box appears.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedDialogueBox extends DialogueBox implements polymod.hscript.HScriptedClass {}
|