mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 03:08:29 +02:00
Removed get_suffix and get_prefix to replace them with get_tag_template and tags_template in mod_config.json
9 lines
264 B
Python
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
|