awesome-patterns/creational/abstract_factory/sport_motorbike.go
2018-01-14 15:43:41 +10:00

16 lines
234 B
Go

package main
type SportMotorbike struct{}
func (s *SportMotorbike) NumWheels() int {
return 2
}
func (s *SportMotorbike) NumSeats() int {
return 1
}
func (s *SportMotorbike) GetMotorbikeType() int {
return SportMotorbikeType
}