c8e0f08aae
Mainly just messing around
12 lines
124 B
Go
12 lines
124 B
Go
package ui
|
|
|
|
type num interface {
|
|
int32 | float32
|
|
}
|
|
|
|
type Tween[T num] struct {
|
|
start T
|
|
nextMult float32
|
|
end T
|
|
}
|