mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-10 06:05:20 -06:00
add file level docstrings to all files
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
"""
|
||||
config.py
|
||||
Holds all constants used for setting up the game.
|
||||
May later hold functions for loading/saving configuration files.
|
||||
"""
|
||||
|
||||
class Config(object):
|
||||
"""
|
||||
A simple class dedicated to loading, storing and organizing constants.
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
"""
|
||||
main.py
|
||||
The main class used to load the game.
|
||||
Holds the main game window, as well as manages basic functions for organizing the game.
|
||||
"""
|
||||
|
||||
import arcade
|
||||
|
||||
from config import Config
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
"""
|
||||
mobs.py
|
||||
Organizes all classes related to Mobs, Entities, Enemies, Players and Items.
|
||||
"""
|
||||
|
||||
import arcade
|
||||
|
||||
from config import Config
|
||||
|
||||
Reference in New Issue
Block a user