Refactored and simplified lua stuff a lot.
This commit is contained in:
9
archive/ui2/CMakeLists.txt
Normal file
9
archive/ui2/CMakeLists.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
# Copyright (c) 2026 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Sources
|
||||
target_sources(${DUSK_LIBRARY_TARGET_NAME}
|
||||
PUBLIC
|
||||
)
|
||||
8
archive/ui2/ui2.c
Normal file
8
archive/ui2/ui2.c
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* Copyright (c) 2026 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#include "ui2.h"
|
||||
10
archive/ui2/ui2.h
Normal file
10
archive/ui2/ui2.h
Normal file
@@ -0,0 +1,10 @@
|
||||
// Copyright (c) 2026 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "dusk.h"
|
||||
|
||||
// Two kinds of UI elements, those that are scripted (with a state, logic, etc)
|
||||
// and those that are draw only (rectangle, text, etc).
|
||||
Reference in New Issue
Block a user