diff options
Diffstat (limited to 'include/user/paf/resource.h')
-rw-r--r-- | include/user/paf/resource.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/include/user/paf/resource.h b/include/user/paf/resource.h new file mode 100644 index 0000000..156320f --- /dev/null +++ b/include/user/paf/resource.h @@ -0,0 +1,44 @@ +/* + Vita Development Suite Libraries +*/ + +#ifndef _VDSUITE_USER_PAF_RESOURCE_H +#define _VDSUITE_USER_PAF_RESOURCE_H + +#include <kernel.h> +#include <paf/common.h> + +namespace paf { + + class Resource + { + public: + + Resource(); + + ~Resource(); + + class Element + { + public: + + Element() : hash(0) + { + + } + + ~Element() + { + + } + + SceUInt32 GetHashByName(Element *src); + + paf::String name; + SceUInt32 hash; + }; + }; + +} + +#endif /* _VDSUITE_USER_PAF_RESOURCE_H */ |