mirror of
https://github.com/clockworkpi/LauncherGoDev.git
synced 2025-12-12 16:08:52 +01:00
10 lines
154 B
Go
10 lines
154 B
Go
package rect
|
|
|
|
import (
|
|
"github.com/veandco/go-sdl2/sdl"
|
|
)
|
|
|
|
func Rect(top ,left, width,height int32) sdl.Rect {
|
|
return sdl.Rect{top,left,width,height}
|
|
}
|