blob: 156320f26b60e2080f343317864b8ee96edbae8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 */
|