HDNes/hdnes/stdafx.h
2015-01-14 00:38:38 +08:00

27 lines
532 B
C++

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
#include <time.h>
#include "SDL2/SDL.h"
#include "SDL2/SDL_mixer.h"
#include <GL\glew.h>
#include <gl/gl.h>
#include <gl/glu.h>
#include <GL\glext.h>
#include <wx\wx.h>
#include <vector>
#include <iostream>
#include <fstream>
#include <sstream>
#include "globalConst.h"
#include "commonUtil.h"