Conways-Game-Of-Life/ConwaysGameOfLife/ConwaysGameOfLife.cpp
Robert Altner e3e9877ec0 Everything has been added.
I cried
2018-03-20 20:52:09 +01:00

15 lines
742 B
C++
Raw Permalink 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 APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
Framework::init(800, 800, "Conway's Game Of Life", sf::Style::None | sf::Style::Close);
Framework::run();
return 0;
}