summaryrefslogtreecommitdiff
path: root/include/user/paf/graphics.h
diff options
context:
space:
mode:
authorGrapheneCt2021-03-20 16:12:07 -0400
committerReiko Asakura2021-03-20 16:12:07 -0400
commit570d94b1429316d02e665db5f7298bef75f2ecdc (patch)
tree1f1ac783809935660d3eac82d58384c2f252f11e /include/user/paf/graphics.h
parentFix struct SceKernelModuleLibraryInfo (diff)
downloadvds-libraries-570d94b1429316d02e665db5f7298bef75f2ecdc.tar.gz
Add C++ paf classes
Diffstat (limited to '')
-rw-r--r--include/user/paf/graphics.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/user/paf/graphics.h b/include/user/paf/graphics.h
new file mode 100644
index 0000000..33889ee
--- /dev/null
+++ b/include/user/paf/graphics.h
@@ -0,0 +1,32 @@
+/*
+ Vita Development Suite Libraries
+*/
+
+#ifndef _VDSUITE_USER_PAF_GRAPHICS_H
+#define _VDSUITE_USER_PAF_GRAPHICS_H
+
+#include <scetypes.h>
+
+namespace paf {
+ namespace graphics {
+
+ class Texture
+ {
+ public:
+
+ Texture() { };
+
+ ~Texture() { };
+
+
+
+ private:
+
+ SceUChar8 unk[0x4];
+
+ };
+
+ }
+}
+
+#endif /* _VDSUITE_USER_PAF_GRAPHICS_H */