Sha256: cd8995e9b97b816c24ef8bb7eeac5fe5fa5c225b1ec2311a6247d05372c833e4

Contents?: true

Size: 233 Bytes

Versions: 6

Compression:

Stored size: 233 Bytes

Contents

#include <reflex.h>


using namespace Reflex;


int
main (int argc, char** argv)
{
	init();
	Window win;
	win.set_title("Reflex Test Window");
	win.set_bounds(100, 100, 600, 500);
	win.show();
	run();
	fin();
	return EXIT_SUCCESS;
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
reflexion-0.1.6 examples/hello/main.cpp
reflexion-0.1.5 examples/hello/main.cpp
reflexion-0.1.4 examples/hello/main.cpp
reflexion-0.1.3 examples/hello/main.cpp
reflexion-0.1.2 examples/hello/main.cpp
reflexion-0.1.1 examples/hello/main.cpp