mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05:00
9 lines
335 B
Haxe
9 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 {}
|