summaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/image.h b/src/image.h
deleted file mode 100644
index e3cf86f..0000000
--- a/src/image.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef IMAGE_H
-#define IMAGE_H
-
-#include <stdbool.h>
-#include <stdint.h>
-
-struct image {
- uint32_t width;
- uint32_t height;
- struct {
- uint32_t x;
- uint32_t y;
- uint32_t width;
- uint32_t height;
- } damage;
-};
-
-#endif /* IMAGE_H */