From df27145973d68b734e975c1813d5c1ada53c2c24 Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Fri, 30 Aug 2024 23:11:31 +0200 Subject: Merge METHOD_ARG and METHOD macros --- includes/rect.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/rect.h') diff --git a/includes/rect.h b/includes/rect.h index 7c3befc..3b84e01 100644 --- a/includes/rect.h +++ b/includes/rect.h @@ -11,8 +11,8 @@ DEFINE_OBJECT(TYPE); CONSTRUCTOR(TYPE); // Methods -void METHOD_ARG(TYPE, init, int l, int t, int w, int h); -int METHOD_ARG(TYPE, toString, char* buffer); +void METHOD(TYPE, init, int l, int t, int w, int h); +int METHOD(TYPE, toString, char* buffer); // Properties (getters & setters) GETTER(TYPE, int, left); -- cgit v1.2.3