From f5519ddcd646e21bd7ba502aa3f63c9bef977e8f Mon Sep 17 00:00:00 2001 From: "Erick (CptBlackPixel)" Date: Mon, 9 Mar 2020 14:19:36 -0300 Subject: [PATCH] Update lib/components/component.dart Co-Authored-By: Luan Nico --- lib/components/component.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/components/component.dart b/lib/components/component.dart index 8ceb0a7d2..56a84371e 100644 --- a/lib/components/component.dart +++ b/lib/components/component.dart @@ -57,8 +57,8 @@ abstract class Component { /// Called when the component has been added and preperad by the game instance. /// - /// This can be used to make initializations on your component as when this method is called - /// things like resize, and mixins are already set for the component. + /// This can be used to make initializations on your component as, when this method is called, + /// things like resize (and other mixins) are already set and usable. void onMount() {} }