Skip to content

Commit 785977a

Browse files
committed
Updated readme and renamed Template pattern folder to 23 to match the readme
1 parent a0a16da commit 785977a

14 files changed

+2
-2
lines changed
File renamed without changes.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -553,11 +553,11 @@ If you are creating several different factories, then they should inherit from s
553553

554554
## 22. Facade
555555

556-
When you have several related classes, such as AI or audio, and want to make it simpler to access methods in those classes without creating spaghetti code. The name comes from [building facades](https://en.wikipedia.org/wiki/Fa%C3%A7ade) - you can only see the exterior of the building, but have no idea how the building looks like inside. The more classes you hide from other classes the better!
556+
When you have several related classes, such as AI or audio, and want to make it simpler to access methods in those classes. The name comes from [building facades](https://en.wikipedia.org/wiki/Fa%C3%A7ade) - you can only see the exterior of the building, but have no idea how the building looks like inside. You can still access classes in the subsystem if you need to - the Facade is just making it simpler to access the more common classes.
557557

558558
**How to implement?**
559559

560-
Create a manager class that provides a single interface to a large collection of related classes.
560+
Create a manager class that provides a single interface to a large collection of related classes.
561561

562562
**When is it useful?**
563563

0 commit comments

Comments
 (0)