Initial Commit

This commit is contained in:
Cutieguwu
2025-02-26 14:40:25 -05:00
commit d9dc0e390c
129 changed files with 4106 additions and 0 deletions

37
config/features.json Normal file
View File

@@ -0,0 +1,37 @@
{
"fullscreen": {
"libs": {
"pygame": {
"ver_implemented": [2, 0, 0]
}
},
"is_active": false
},
"vsync": {
"libs": {
"pygame": {
"ver_implemented": [2, 0, 0]
}
},
"is_active": false
},
"matchcase": {
"libs": {
"python": {
"ver_implemented": [3, 10, 0]
}
},
"is_active": false
},
"resizeable": {
"libs": {
"pygame": {
"ver_implemented": [2, 0, 0]
}
},
"is_active": false
}
}

View File

@@ -0,0 +1,9 @@
{
"window": {
"framerate": 30,
"size": {
"width": 1440,
"height": 720
}
}
}

26
config/settings/user.json Normal file
View File

@@ -0,0 +1,26 @@
{
"window": {
"framerate": 165,
"size": {
"width": 2280,
"height": 1440
}
},
"controls": {
"keyboard": {
"move_left": "K_LEFT",
"move_right": "K_RIGHT",
"move_up": "K_UP",
"move_down": "K_DOWN"
},
"mouse": {
"is_inverted":
false
}
},
"active_features": [
"fullscreen"
]
}