Creative Commons License Foxbond's Repo

// (c) 2013 Michał (Foxbond) Chraniuk
#include "mastermind.h"

#include "utility.h"
#include "mm.h"


int main (void){

	mm game;

	game.init();

	game.run();

	game.halt();

	return 0;
}

> Back