This commit is contained in:
沈瑗杰 2020-12-05 14:57:43 +08:00
parent 0b5b8ab4a7
commit 78bb461ec8
6 changed files with 25 additions and 3 deletions

View File

@ -1,5 +1,7 @@
# SR # SR
### Vision 0.1
[中文](https://github.com/shenjackyuanjie/SR/blob/main/docs/README-cn.md) [中文](https://github.com/shenjackyuanjie/SR/blob/main/docs/README-cn.md)
> It's a Simple Rocket liked game build with Python > It's a Simple Rocket liked game build with Python
@ -12,7 +14,7 @@ Nope. Not even one
# Environment # Environment
- `Python 3.8.5` `Windows10 x64` - `Python 3.8.5` `Windows10 x64` `Pyglet 1.5.7`
## Required python modules ## Required python modules

View File

@ -5,6 +5,7 @@ mail: 3695888@qq.com
import pyglet import pyglet
import libs import libs
import json
def main(): def main():
pass pass

View File

@ -1,3 +1,10 @@
{ {
"size" : {
"x" : "1024",
"y" : "768",
"fullscreen" : "False"
},
"caption" : "Simple Rocket 0.1",
"visible" : "True",
"style" : "None"
} }

View File

@ -1,5 +1,7 @@
# SR # SR
### 版本 0.1
[English](https://github.com/shenjackyuanjie/SR) [English](https://github.com/shenjackyuanjie/SR)
> 这是一个用Python制作的类Simple Rocket游戏 > 这是一个用Python制作的类Simple Rocket游戏
@ -12,7 +14,7 @@
# 环境需求 # 环境需求
- `Python 3.8.5` `Windows10 x64` - `Python 3.8.5` `Windows10 x64` `Pyglet 1.5.7`
## 需要的Python模块 ## 需要的Python模块

View File

@ -0,0 +1,10 @@
{
"size" : {
"x" : "int",
"y" : "int",
"fullscreen" : "bool"
},
"caption" : "xxx",
"visible" : "bool",
"style" : "xxx(in list)"
}