ichigo/engine/z.go
Josh Deprez d31fbd1e73 AnimRef
2021-08-08 11:46:03 +10:00

7 lines
174 B
Go

package engine
// ZPos implements ZPositioner directly (as a float64 value).
type ZPos float64
// Z returns z as a float64.
func (z ZPos) Z() float64 { return float64(z) }