mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
ce4732a7dc
Updates #1230
10 lines
101 B
Go
10 lines
101 B
Go
package main
|
|
|
|
func Foo() vec2 {
|
|
v := vec2(0)
|
|
if v := vec2(1); v.x == 1 {
|
|
return v
|
|
}
|
|
return v
|
|
}
|