Tiled 3D Amortized Noise
A Program to Generate Infinite3D Grayscale Noise Textures with Amortized Noise
 All Classes Files Functions Variables Macros Pages
defines.h
Go to the documentation of this file.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 #pragma once
17 
18 #if defined(_MSC_VER) //Windows Visual Studio
19 
20  #include <windows.h> //for timeGetTime() mainly
21  #include <conio.h> //for _getch()
22  #pragma warning(disable : 4996) //disable annoying security warnings for stdio functions
23 
24 #else//other OS
25 
26  #include <time.h>
27  #define MAX_PATH 256
28 
29 #endif