aboutsummaryrefslogtreecommitdiff
path: root/dat.h
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2020-06-12 21:57:48 +0000
committerrodri <rgl@antares-labs.eu>2020-06-12 21:57:48 +0000
commit0b0726f3a990ee241fd93b5c3f53631bfbb4c455 (patch)
tree72942206518cf8f2da7ed1b744077d4a5343fa29 /dat.h
parent60bbfc0e2353b834409ecefd10ae3985f5cbf111 (diff)
downloadpuppeteer-0b0726f3a990ee241fd93b5c3f53631bfbb4c455.tar.gz
puppeteer-0b0726f3a990ee241fd93b5c3f53631bfbb4c455.tar.bz2
puppeteer-0b0726f3a990ee241fd93b5c3f53631bfbb4c455.zip
layout done. implemented some error-checking wrappers and started work on layers.
Diffstat (limited to 'dat.h')
-rw-r--r--dat.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/dat.h b/dat.h
new file mode 100644
index 0000000..5426da9
--- /dev/null
+++ b/dat.h
@@ -0,0 +1,7 @@
+typedef struct Layer Layer;
+
+struct Layer
+{
+ RFrame rf;
+ Image *canvas;
+};