Newer
Older
/*
* main.cpp
*
* Created on: 21 Nov 2019
* Author: webpigeon
*/
#include <src/lib/state.h>
#include <iostream>
using namespace std;
void test(const entity& test){
cout << test.get_property("test") << endl;
}
int main(int argc, char **argv){
cout << "test" << endl;
entity t;
test(t);
return 0;
}