music-field/include/type.hpp
Vindicator645 29fa1a5dd6 Added.
This section contains the fft part which is used to transform sound signal into color more accurately but due to time and knowledge constraint is sadly unused.
2018-12-27 10:03:40 +08:00

30 lines
405 B
C++

#ifndef type_h
#define type_h
#include <iostream>
#include <stdint.h>
#include <cmath>
#include <time.h>
#ifdef __APPLE__
#include <OpenGL/OpenGL.h>
#include <GLUT/GLUT.h>
#include <sys/time.h>
#include <unistd.h>
#define _CRT_SECURE_NO_WARNINGS
#endif
#ifdef WIN32
#include <Windows.h>
#include <glut.h>
#pragma warning(disable:4996)
#endif
#include <vector>
#include <list>
#include <map>
#endif