Files
LinuxPA/internal/ui/tween.go
T
Caleb Gardner c8e0f08aae Started messing around with Raylib
Mainly just messing around
2025-01-11 06:35:32 -06:00

12 lines
124 B
Go

package ui
type num interface {
int32 | float32
}
type Tween[T num] struct {
start T
nextMult float32
end T
}