Skip to content

Instantly share code, notes, and snippets.

@alibahaaa
Created January 18, 2023 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alibahaaa/63e1a39518325e145d7c224e87018020 to your computer and use it in GitHub Desktop.
Save alibahaaa/63e1a39518325e145d7c224e87018020 to your computer and use it in GitHub Desktop.
class ConcreteCreatorA : Creator() {
override fun factoryMethod(): Product {
return ConcreteProductA()
}
}
class ConcreteCreatorB : Creator() {
override fun factoryMethod(): Product {
return ConcreteProductB()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment