diff options
author | Jonas Kohl | 2024-08-30 23:11:31 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-08-30 23:11:31 +0200 |
commit | df27145973d68b734e975c1813d5c1ada53c2c24 (patch) | |
tree | 7156e4acdff8c9cd987006e60ac3db4ad3e2cb02 /includes/point.h | |
parent | f562db1d3303d81ce5fe9440cc858e24a7a26eff (diff) |
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); |