Conways-Game-Of-Life/ConwaysGameOfLife/ConwaysGameOfLife.cpp
2018-03-20 18:17:17 +01:00

15 lines
568 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ConwaysGameOfLife.cpp: Definiert den Einstiegspunkt für die Konsolenanwendung.
//
#include "stdafx.h"
#include "Framework.h"
int main()
{
Framework::init(800, 800, "Conway's Game Of Life", sf::Style::None | sf::Style::Close);
Framework::run();
return 0;
}