mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 00:34:40 +00:00
11 lines
419 B
Haxe
11 lines
419 B
Haxe
package funkin.play.cutscene.dialogue;
|
|
|
|
/**
|
|
* A script that can be tied to a Conversation.
|
|
* Create a scripted class that extends Conversation to use this.
|
|
* This allows you to customize how a specific conversation appears and behaves.
|
|
* Someone clever could use this to add branching dialogue I think.
|
|
*/
|
|
@:hscriptClass
|
|
class ScriptedConversation extends Conversation implements polymod.hscript.HScriptedClass {}
|