mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
23 lines
409 B
C++
23 lines
409 B
C++
#ifndef _STDAFX_H_
|
|
#define _STDAFX_H_
|
|
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#include <string>
|
|
#include <list>
|
|
#include <vector>
|
|
#include <unordered_map>
|
|
|
|
#include <windows.h>
|
|
|
|
#include "Types.h"
|
|
#include "Stream.h"
|
|
#include "StdStream.h"
|
|
#include "win32/Window.h"
|
|
#include "win32/Layouts.h"
|
|
#include "win32/CustomDrawn.h"
|
|
#include "win32/DeviceContext.h"
|
|
|
|
#endif
|