15 lines
265 B
C++
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;
|
|
} |