feat: add ci, testing and base structure
Some checks failed
CI / build (push) Failing after 56s

This commit is contained in:
2026-03-14 12:43:28 +01:00
parent 3dd87cc5b8
commit 431c9abcc7
6 changed files with 78 additions and 0 deletions

0
include/curtle/curtle.h Normal file
View File

View File

@@ -0,0 +1,11 @@
#ifndef CURTLE_VECTOR_H
#define CURTLE_VECTOR_H
typedef struct {
double x;
double y;
} vec2;
vec2 vec2_add(vec2 a, vec2 b);
#endif