This repository has been archived on 2021-09-07. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
223 B
Go
Raw Permalink Normal View History

2019-03-09 23:38:10 +03:00
package abstract_factory
/**
* Vehicle is root abstractions for the family
* It contains very common behavior for the
* family tree
*/
type Vehiche interface {
WheelCount() int
NumberOfDoors() int
Speed() int
}