mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
21 lines
234 B
Go
21 lines
234 B
Go
package shape
|
|
|
|
type Point struct {
|
|
X int
|
|
Y int
|
|
}
|
|
|
|
type Shape struct {
|
|
Name string
|
|
Center Point
|
|
color string
|
|
}
|
|
|
|
func (s *Shape) SetColor(color string) {
|
|
s.color = color
|
|
}
|
|
|
|
func (s *Shape) GetColor() string {
|
|
return s.color
|
|
}
|