30 lines
381 B
Nim
30 lines
381 B
Nim
# This is just an example to get you started. A typical hybrid package
|
|
# uses this file as the main entry point of the application.
|
|
|
|
import
|
|
# package imports
|
|
geedren_mansionpkg/objects,
|
|
geedren_mansionpkg/rooms,
|
|
geedren_mansionpkg/items,
|
|
geedren_mansionpkg/characters,
|
|
# Language imports
|
|
strformat
|
|
|
|
when isMainModule:
|
|
title_screen()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|