This commit is contained in:
parent
c92bb5e352
commit
4e231572bd
1 changed files with 15 additions and 0 deletions
15
src/tools/eydrle_main.cpp
Normal file
15
src/tools/eydrle_main.cpp
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#include "eydrle.hh"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
using namespace EydTools;
|
||||||
|
|
||||||
|
int main(int argc, char **argv){
|
||||||
|
bool ready;
|
||||||
|
EydRle eydrle;
|
||||||
|
ready = eydrle.init(argc, argv);
|
||||||
|
if (ready) {
|
||||||
|
eydrle.run();
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue