mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
6 lines
101 B
Go
6 lines
101 B
Go
|
package main
|
||
|
|
||
|
func Foo(foo vec4) (float, float, float, float) {
|
||
|
return foo.x, foo.y, foo.z, foo.w
|
||
|
}
|