mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
380b7382ac
Updates #1230
10 lines
89 B
Go
10 lines
89 B
Go
package main
|
|
|
|
func Foo() vec2 {
|
|
x := true
|
|
if x {
|
|
return vec2(0)
|
|
}
|
|
return vec2(1)
|
|
}
|