Initialize SDL

This commit is contained in:
2025-01-20 22:32:30 +01:00
parent e60c508e97
commit b438dd7bf4
3 changed files with 45 additions and 0 deletions

10
game/BUILD.bazel Normal file
View File

@ -0,0 +1,10 @@
cc_binary(
name = "game",
srcs = [
"main.cpp",
],
deps = [
"@asl//asl",
"@sdl3_windows//:sdl3",
],
)