aboutsummaryrefslogtreecommitdiff
path: root/include/vec2.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-10-14 01:16:31 +0200
committerdec05eba <dec05eba@protonmail.com>2022-10-14 01:22:43 +0200
commit93d46b976730bced7a70be1617a0171600167314 (patch)
tree63580cf3ec44425531f95547c54c2ae519a1da00 /include/vec2.h
parent9d65552d057a7a629ead9758f7627f0c7879bf4a (diff)
Refactor nvfbc into abstract capture api
Diffstat (limited to 'include/vec2.h')
-rw-r--r--include/vec2.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/vec2.h b/include/vec2.h
new file mode 100644
index 0000000..d1957ef
--- /dev/null
+++ b/include/vec2.h
@@ -0,0 +1,8 @@
+#ifndef VEC2_H
+#define VEC2_H
+
+typedef struct {
+ int x, y;
+} vec2i;
+
+#endif /* VEC2_H */ \ No newline at end of file