Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/gui/Player.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/Player.py')
-rw-r--r--src/gui/Player.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/Player.py b/src/gui/Player.py
new file mode 100644
index 0000000..051b2a7
--- /dev/null
+++ b/src/gui/Player.py
@@ -0,0 +1,9 @@
+
+class Player:
+ name = None
+
+ def __init__(self, name):
+ self.name = name
+
+ def getName(self):
+ return self.name \ No newline at end of file