mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-01 03:15:53 +00:00
27 lines
851 B
Haxe
27 lines
851 B
Haxe
package funkin.data.dialogue;
|
|
|
|
import funkin.play.cutscene.dialogue.Speaker;
|
|
import funkin.play.cutscene.dialogue.ScriptedSpeaker;
|
|
import funkin.util.tools.ISingleton;
|
|
import funkin.data.DefaultRegistryImpl;
|
|
|
|
@:nullSafety
|
|
class SpeakerRegistry extends BaseRegistry<Speaker, SpeakerData, SpeakerEntryParams> implements ISingleton implements DefaultRegistryImpl
|
|
{
|
|
/**
|
|
* The current version string for the speaker data format.
|
|
* Handle breaking changes by incrementing this value
|
|
* and adding migration to the `migrateSpeakerData()` function.
|
|
*/
|
|
public static final SPEAKER_DATA_VERSION:thx.semver.Version = "1.0.0";
|
|
|
|
public static final SPEAKER_DATA_VERSION_RULE:thx.semver.VersionRule = "1.0.x";
|
|
|
|
public function new()
|
|
{
|
|
super('SPEAKER', 'dialogue/speakers', SPEAKER_DATA_VERSION_RULE);
|
|
}
|
|
}
|
|
|
|
typedef SpeakerEntryParams = {}
|