Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pilas/ventana.py
diff options
context:
space:
mode:
Diffstat (limited to 'pilas/ventana.py')
-rw-r--r--pilas/ventana.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/pilas/ventana.py b/pilas/ventana.py
new file mode 100644
index 0000000..b53e7d2
--- /dev/null
+++ b/pilas/ventana.py
@@ -0,0 +1,16 @@
+# -*- 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
+
+import pilas
+
+modo_depuracion = False
+eje_coordenadas = None
+
+def iniciar(ancho, alto, titulo):
+ ventana = pilas.motor.crear_ventana(ancho, alto, titulo)
+ return ventana