6 lines
76 B
Go
6 lines
76 B
Go
|
package config
|
||
|
|
||
|
type Position struct {
|
||
|
X int `yaml:"x"`
|
||
|
Y int `yaml:"y"`
|
||
|
}
|