diff options
Diffstat (limited to 'include/user/paf/graphics.h')
-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 */ |