Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Jugador.py
diff options
context:
space:
mode:
Diffstat (limited to 'Jugador.py')
-rw-r--r--Jugador.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/Jugador.py b/Jugador.py
new file mode 100644
index 0000000..8d8342b
--- /dev/null
+++ b/Jugador.py
@@ -0,0 +1,20 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import os
+import sys
+import random
+
+import pygame
+from pygame.locals import *
+
+from Nave import Nave
+
+class Jugador ():
+
+ def __init__(self, nombre, imagen):
+
+ self.nombre = nombre
+ self.puntos = 0
+ self.nave = Nave(imagen, self)
+ \ No newline at end of file