diff options
author | GrapheneCt | 2021-03-20 16:12:07 -0400 |
---|---|---|
committer | Reiko Asakura | 2021-03-20 16:12:07 -0400 |
commit | 570d94b1429316d02e665db5f7298bef75f2ecdc (patch) | |
tree | 1f1ac783809935660d3eac82d58384c2f252f11e /include/user/paf/graphics.h | |
parent | Fix struct SceKernelModuleLibraryInfo (diff) | |
download | vds-libraries-570d94b1429316d02e665db5f7298bef75f2ecdc.tar.gz |
Add C++ paf classes
Diffstat (limited to '')
-rw-r--r-- | include/user/paf/graphics.h | 32 |
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 */ |