diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-11-12 19:14:09 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-11-12 19:14:09 +1100 |
| commit | 8a0a167adbf3d9b6f8b6f16aaf20ca39ad5549de (patch) | |
| tree | 02b6cf23f591915747ec2994381854a79979c4a0 /src/ui/screen_lua.cpp | |
| parent | 8471046a95ab9e00f7d42b56dbbc9ce3e5b424b9 (diff) | |
| download | tangara-fw-8a0a167adbf3d9b6f8b6f16aaf20ca39ad5549de.tar.gz | |
Convert the main menu screen to lua lol
Diffstat (limited to 'src/ui/screen_lua.cpp')
| -rw-r--r-- | src/ui/screen_lua.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ui/screen_lua.cpp b/src/ui/screen_lua.cpp new file mode 100644 index 00000000..cee5186e --- /dev/null +++ b/src/ui/screen_lua.cpp @@ -0,0 +1,19 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + +#include "screen_lua.hpp" + +#include "lua.hpp" +#include "luavgl.h" + +namespace ui { +namespace screens { + +Lua::Lua(lua_State* l) { +} + +} // namespace screens +} // namespace ui |
