Newer
Older
atlantis / src / player.py
#!/usr/bin/python3
# 
# Atlantis is a framework for creating multi-user dungeon worlds.
# The player module is in charge of everything to do with the internal
# representation of a player character.
#
# Licensed under the terms of the GPLv3
# author: Daniel Vedder
# date: 02/05/2015
#

class Player(object):
    '''
    The Player class represents a game character.
    '''

    def __init__(self):
        pass