order inc files to folders

This commit is contained in:
2025-12-11 18:07:36 +01:00
parent 4d3349720c
commit 755b648280
19 changed files with 18 additions and 18 deletions

32
inc/init/init.config.lua Normal file
View File

@@ -0,0 +1,32 @@
local Config = {
screen = {
width = 240,
height = 136
},
colors = {
black = 0,
light_grey = 13,
dark_grey = 14,
green = 6,
npc = 8,
item = 12 -- yellow
},
player = {
w = 8,
h = 8,
start_x = 120,
start_y = 128,
sprite_id = 1
},
physics = {
gravity = 0.5,
jump_power = -5,
move_speed = 1.5,
max_jumps = 2,
interaction_radius_npc = 12,
interaction_radius_item = 8
},
timing = {
splash_duration = 120
}
}