mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-19 01:24:26 +00:00
* Try muted first * WIP * Update AudioChannel by batch * Update util package * Remove min * Tidy module * Update module
8 lines
84 B
Go
8 lines
84 B
Go
package util
|
|
|
|
func MinInt(x int, y int) int {
|
|
if x < y {
|
|
return x
|
|
}
|
|
return y
|
|
}
|