Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pilas/actores/estrella.py
diff options
context:
space:
mode:
Diffstat (limited to 'pilas/actores/estrella.py')
-rw-r--r--pilas/actores/estrella.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/pilas/actores/estrella.py b/pilas/actores/estrella.py
new file mode 100644
index 0000000..019b57e
--- /dev/null
+++ b/pilas/actores/estrella.py
@@ -0,0 +1,19 @@
+# -*- encoding: utf-8 -*-
+# Pilas engine - A video game framework.
+#
+# Copyright 2010 - Hugo Ruscitti
+# License: LGPLv3 (see http://www.gnu.org/licenses/lgpl.html)
+#
+# Website - http://www.pilas-engine.com.ar
+
+from pilas.actores import Actor
+import pilas
+
+
+class Estrella(Actor):
+ "Representa una estrella de color amarillo."
+
+ def __init__(self, x=0, y=0):
+ imagen = pilas.imagenes.cargar('estrella.png')
+ Actor.__init__(self, imagen, x=x, y=y)
+ self.rotacion = 0