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