From a553b28f6407d1940fe1a33a9c959883eab8fe88 Mon Sep 17 00:00:00 2001 From: Lukas Klingsbo Date: Tue, 9 Jul 2024 22:24:10 +0200 Subject: [PATCH] docs: Remove abstract definition of Component (#3217) Remove abstract definition of `Component`. --- doc/flame/components.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/flame/components.md b/doc/flame/components.md index 6de96f6dd01..b2417af8416 100644 --- a/doc/flame/components.md +++ b/doc/flame/components.md @@ -8,9 +8,8 @@ This diagram might look intimidating, but don't worry, it is not as complex as i ## Component -All components inherit from the abstract class `Component` and all components can have other -`Component`s as children. This is the base of what we call the Flame Component System, or FCS for -short. +All components inherit from the `Component` class and all components can have other `Component`s as +children. This is the base of what we call the Flame Component System, or FCS for short. Children can be added either with the `add(Component c)` method or directly in the constructor.