From f562db1d3303d81ce5fe9440cc858e24a7a26eff Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Thu, 29 Aug 2024 17:56:25 +0200 Subject: Added comment --- includes/rect.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'includes') diff --git a/includes/rect.h b/includes/rect.h index fca9602..7c3befc 100644 --- a/includes/rect.h +++ b/includes/rect.h @@ -7,11 +7,14 @@ DEFINE_OBJECT(TYPE); +// Constructor CONSTRUCTOR(TYPE); +// Methods void METHOD_ARG(TYPE, init, int l, int t, int w, int h); int METHOD_ARG(TYPE, toString, char* buffer); +// Properties (getters & setters) GETTER(TYPE, int, left); SETTER(TYPE, int, left); -- cgit v1.2.3