Add files via upload

This commit is contained in:
clockworkpi
2018-05-25 20:34:07 +08:00
committed by GitHub
parent f91598bb0f
commit ad93e5d889
59 changed files with 4734 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
import pygame
from pygame.locals import *
from sys import exit
import os
import sys
from datetime import datetime
import base64
from beeprint import pp
## local UI import
import pages
import myvars
def Init(main_screen):
pages.InitListPage(main_screen)
def API(main_screen):
if main_screen !=None:
main_screen.PushCurPage()
main_screen.SetCurPage(myvars.ListPage)
main_screen.Draw()
main_screen.SwapAndShow()