mirror of
https://github.com/sstent/aicyclingcoach-go.git
synced 2026-01-30 02:52:00 +00:00
14 lines
165 B
Go
14 lines
165 B
Go
package layout
|
|
|
|
type Layout struct {
|
|
Width int
|
|
Height int
|
|
}
|
|
|
|
func NewLayout(width, height int) *Layout {
|
|
return &Layout{
|
|
Width: width,
|
|
Height: height,
|
|
}
|
|
}
|