17 lines
327 B
C++
17 lines
327 B
C++
#include <iostream>
|
|
#include "../resource/resource.h"
|
|
|
|
using namespace std;
|
|
|
|
RESOURCE_PACK(res)
|
|
|
|
int main()
|
|
{
|
|
Resource::ResourceMap resMap;
|
|
Resource::getResourcePack_res(resMap);
|
|
|
|
cout << "resources available : " << endl << endl;
|
|
for(auto it : resMap)
|
|
cout << it.first << " -> " << it.second << endl;
|
|
}
|