diff options
Diffstat (limited to 'includes/point.h')
-rw-r--r-- | includes/point.h | 4 |
1 files changed, 2 insertions, 2 deletions
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); |