Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pilas/ventana.py
blob: b53e7d2ab985754a5804d3f6f15605931508837b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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