got basic ui elmental interaction working, + alignment of anchor

This commit is contained in:
2024-03-02 10:24:09 -05:00
parent 1e5773e486
commit 035c726a71
24 changed files with 722 additions and 202 deletions

View File

@ -55,7 +55,13 @@ import "core:path/filepath"
file_name_from_path :: filepath.short_stem
import str "core:strings"
str_builder_to_string :: str.to_string
import "core:time"
Duration :: time.Duration
import "core:unicode"
is_white_space :: unicode.is_white_space
import "core:unicode/utf8"
runes_to_string :: utf8.runes_to_string
string_to_runes :: utf8.string_to_runes
OS_Type :: type_of(ODIN_OS)
@ -71,9 +77,10 @@ is_power_of_two :: proc {
}
to_runes :: proc {
utf8.string_to_runes,
string_to_runes,
}
to_string :: proc {
runes_to_string,
str_builder_to_string,
}