summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Kohl <gitlab@jonaskohl.de>2024-08-29 17:56:25 +0200
committerJonas Kohl <gitlab@jonaskohl.de>2024-08-29 17:56:25 +0200
commitf562db1d3303d81ce5fe9440cc858e24a7a26eff (patch)
tree5a9fe91d8ceb6eccd45993117927aa9c26f33bb7
parent84ad096896e9948c722a957d07ed6868e252a9f7 (diff)
Added comment
-rw-r--r--includes/rect.h3
1 files changed, 3 insertions, 0 deletions
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);