SpaceCadetPinball/SpaceCadetPinball/pch.h

22 lines
760 B
C
Raw Normal View History

2020-10-04 08:28:38 +02:00
// Tips for Getting Started:
// 1. Use the Solution Explorer window to add/manage files
// 2. Use the Team Explorer window to connect to source control
// 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
#ifndef PCH_H
#define PCH_H
// TODO: add headers that you want to pre-compile here
2020-10-25 15:17:26 +01:00
#include <Windows.h>
2020-10-18 17:08:41 +02:00
#include <cstdio>
2020-10-25 15:17:26 +01:00
#include <cassert>
#include <cmath>
2020-10-18 17:08:41 +02:00
#define memoryallocate(x) malloc(x);
#define memoryfree(x) free(x);
2020-10-04 08:28:38 +02:00
#endif //PCH_H