8 lines
195 B
Python
8 lines
195 B
Python
|
|
from ..game_content import ContentPack
|
||
|
|
from ..mod_registry import register_mod_content_pack
|
||
|
|
from ...mods.mod_data import ModNames
|
||
|
|
|
||
|
|
register_mod_content_pack(ContentPack(
|
||
|
|
ModNames.tractor,
|
||
|
|
))
|