From 18e9964d33d5c8a97a01254455101bda0813ad0a Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 1 Sep 2024 02:13:02 +0100 Subject: [PATCH] Move TRIANGLE_VERTICES constant to constants.h --- src/constants.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/constants.h diff --git a/src/constants.h b/src/constants.h new file mode 100644 index 0000000..e3649e0 --- /dev/null +++ b/src/constants.h @@ -0,0 +1,6 @@ +#ifndef CONSTANTS_H +#define CONSTANTS_H + +#define TRIANGLE_VERTICES 3 + +#endif // CONSTANTS_H