Atlas-Install/source/mkw/Track/DefaultTrack.py
Faraphel 99287bbd56 started making a AbstractTrack class to implement more type of "track".
Removed get_suffix and get_prefix to replace them with get_tag_template and tags_template in mod_config.json
2022-08-10 22:33:10 +02:00

9 lines
264 B
Python

from source.mkw.Track.AbstractTrack import AbstractTrack
class DefaultTrack(AbstractTrack):
def get_filename(self, mod_config: "ModConfig") -> str:
return "beginner_course"
def is_new(self, mod_config: "ModConfig") -> bool:
return False