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/point.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/point.h') diff --git a/includes/point.h b/includes/point.h index 311d64d..a7dc60b 100644 --- a/includes/point.h +++ b/includes/point.h @@ -11,9 +11,9 @@ DEFINE_OBJECT(TYPE); CONSTRUCTOR(TYPE); // Methods -void METHOD_ARG(TYPE, init, float x, float y); +void METHOD(TYPE, init, float x, float y); -int METHOD_ARG(TYPE, toString, char* buffer); +int METHOD(TYPE, toString, char* buffer); // Properties (getters & setters) GETTER(TYPE, float, x); -- cgit v1.2.3