2016-03-31 19:24:12 +02:00

15 lines
265 B
C++

#include <iostream>
#include "resource.h"
using namespace std;
int main()
{
cout << "Resource test" << endl;
Resource::initResourceData();
const char *str = Resource::get("plop.txt");
if(str != NULL)
cout << str << endl;
else
cout << "nope" << endl;
}