forked from AbleOS/ableos
sdoom cleanup work
This commit is contained in:
parent
cb68df6a7f
commit
91df131850
sysdata
|
@ -5,14 +5,8 @@ stn := @use("stn");
|
|||
.{log} := stn;
|
||||
.{Vec2} := stn.math
|
||||
|
||||
Player := struct {
|
||||
x: i8,
|
||||
y: i8,
|
||||
|
||||
$new := fn(x: i8, y: i8): Self {
|
||||
return Self.(x, y)
|
||||
}
|
||||
}
|
||||
player := @use("player.hb");
|
||||
.{Player} := player;
|
||||
|
||||
GameState := struct {
|
||||
player: Player,
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
Player := struct {
|
||||
x: i8,
|
||||
y: i8,
|
||||
|
||||
$new := fn(x: i8, y: i8): Self {
|
||||
return Self.(x, y)
|
||||
}
|
||||
}
|
|
@ -23,14 +23,14 @@ resolution = "1024x768x24"
|
|||
|
||||
[boot.limine.ableos.modules]
|
||||
|
||||
[boot.limine.ableos.modules.render_example]
|
||||
path = "boot:///render_example.hbf"
|
||||
# [boot.limine.ableos.modules.render_example]
|
||||
# path = "boot:///render_example.hbf"
|
||||
|
||||
# [boot.limine.ableos.modules.sunset_server]
|
||||
# path = "boot:///sunset_server.hbf"
|
||||
[boot.limine.ableos.modules.sunset_server]
|
||||
path = "boot:///sunset_server.hbf"
|
||||
|
||||
[boot.limine.ableos.modules.ps2_mouse_driver]
|
||||
path = "boot:///ps2_mouse_driver.hbf"
|
||||
# [boot.limine.ableos.modules.ps2_mouse_driver]
|
||||
# path = "boot:///ps2_mouse_driver.hbf"
|
||||
|
||||
# [boot.limine.ableos.modules.ps2_keyboard_driver]
|
||||
# path = "boot:///ps2_keyboard_driver.hbf"
|
||||
|
@ -38,11 +38,11 @@ path = "boot:///ps2_mouse_driver.hbf"
|
|||
# [boot.limine.ableos.modules.ps2_driver]
|
||||
# path = "boot:///ps2_driver.hbf"
|
||||
|
||||
# [boot.limine.ableos.modules.sunset_client]
|
||||
# path = "boot:///sunset_client.hbf"
|
||||
[boot.limine.ableos.modules.sunset_client]
|
||||
path = "boot:///sunset_client.hbf"
|
||||
|
||||
# [boot.limine.ableos.modules.ablefetch]
|
||||
# path = "boot:///ablefetch.hbf"
|
||||
[boot.limine.ableos.modules.sdoom]
|
||||
path = "boot:///sdoom.hbf"
|
||||
|
||||
# [boot.limine.ableos.modules.diskio_driver]
|
||||
# path = "boot:///diskio_driver.hbf"
|
||||
|
|
Loading…
Reference in a new issue