From 57be2b4817e5c8ceae467881bb9b34184729a795 Mon Sep 17 00:00:00 2001 From: SHASHANK PANDEY <42925392+SHASHANK0712@users.noreply.github.com> Date: Tue, 18 Oct 2022 01:06:33 +0530 Subject: [PATCH] Create README.md --- Structural/Flyweight/java/shape-circle-demo/README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Structural/Flyweight/java/shape-circle-demo/README.md diff --git a/Structural/Flyweight/java/shape-circle-demo/README.md b/Structural/Flyweight/java/shape-circle-demo/README.md new file mode 100644 index 0000000..c5d083a --- /dev/null +++ b/Structural/Flyweight/java/shape-circle-demo/README.md @@ -0,0 +1,2 @@ +This simple demonstration describes Flyweight Design pattern by drawing 20 circles of different locations but it creates only 5 objects. +Only 5 colors are available so color property is used to check already existing Circle objects.