def init(): x, y = ScreenUtils.center(350, 100) LoginWindow(x, y, 350, 100)
#Copyright (C) 2004-2005 Randall Leeds # #This file is part of The Street. # #The Street is free software; you can redistribute it and/or modify #it under the terms of the GNU General Public License as published by #the Free Software Foundation; either version 2 of the License, or #(at your option) any later version. # #The Street is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #GNU General Public License for more details. # #You should have received a copy of the GNU General Public License #along with The Street; if not, write to the Free Software #Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 #Sets up a console window for testing. from StreetModules.Client import ScreenUtils from StreetModules.Client.User import RealConsole x, y = ScreenUtils.center(640, 480) RealConsole.RealConsole(x, y, 640, 480)