Started messing around with Raylib

Mainly just messing around
This commit is contained in:
Caleb Gardner
2025-01-11 06:35:32 -06:00
parent 916f9cc79b
commit c8e0f08aae
14 changed files with 184 additions and 1583 deletions
+11
View File
@@ -0,0 +1,11 @@
package ui
type num interface {
int32 | float32
}
type Tween[T num] struct {
start T
nextMult float32
end T
}