From 73bbce1c5db4bdfe8df520154671dbbab8bed07d Mon Sep 17 00:00:00 2001 From: Dinko Galetic Date: Tue, 08 Jun 2010 22:59:27 +0000 Subject: Added login, load and save functions. Load and save are just placeholders for now. --- (limited to 'library') diff --git a/library/pippy/scholar/scholar.py b/library/pippy/scholar/scholar.py index 9e1022b..fbc45ba 100644 --- a/library/pippy/scholar/scholar.py +++ b/library/pippy/scholar/scholar.py @@ -41,3 +41,17 @@ class Room(Game_object): self.exits[through] = to else: return "This room already has this exit" + + +#### functions + +def login(): + name = raw_input("Please enter your character's name: ") + player = Player(name) + return player + +def load(): + pass + +def save(): + pass -- cgit v0.9.1