Skip to content
Snippets Groups Projects
main.cpp 320 B
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;
}