diff options
| author | Jonas Kohl | 2024-08-29 17:56:25 +0200 | 
|---|---|---|
| committer | Jonas Kohl | 2024-08-29 17:56:25 +0200 | 
| commit | f562db1d3303d81ce5fe9440cc858e24a7a26eff (patch) | |
| tree | 5a9fe91d8ceb6eccd45993117927aa9c26f33bb7 | |
| parent | 84ad096896e9948c722a957d07ed6868e252a9f7 (diff) | |
Added comment
| -rw-r--r-- | includes/rect.h | 3 | 
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);  |