From 070103e5786a396fffb08f68ac2b6f4ba8d6871d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Pivo=C5=88ka?= Date: Sat, 20 Jul 2024 01:50:50 +0200 Subject: [PATCH] Add samples link --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cdce5c54d..d3e8bc6bc 100644 --- a/README.md +++ b/README.md @@ -368,7 +368,9 @@ graph LR Tool library has a primary tool class that implements `ITool` interface. There should be only one. -Tool class accepts input through constructors (best one is picked according to input provided by implementation). The tool can output as "produce" (`IProductive`), which creates objects without mutating the input (for example, create MediaTracker clip from replay inputs), or "mutate" (`IMutative`) which creates objects while also causing changes to the input (for example, modifying a map). +Tool class accepts input through constructors (best one is picked according to input provided by implementation). The tool can output as "produce" (`IProductive`), which creates objects without mutating the input (for example, create MediaTracker clip from replay inputs), or "mutate" (`IMutative`) which creates objects while also causing changes to the input (for example, modifying a map without having to recreate it again). + +Samples are available [here](Samples/Tool/). ## Clarity