mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
18 lines
473 B
C++
18 lines
473 B
C++
// xna.h : Include file for standard system include files,
|
|
// or project specific include files.
|
|
|
|
#pragma once
|
|
#define NOMINMAX
|
|
|
|
#include <iostream>
|
|
#include "Windows.h"
|
|
#include "game/window.hpp"
|
|
#include "platform/window-dx.hpp"
|
|
#include "platform/device-dx.hpp"
|
|
#include "platform/game-dx.hpp"
|
|
#include "csharp/stream.hpp"
|
|
#include "platform/gdevicemanager-dx.hpp"
|
|
#include "platform/texture-dx.hpp"
|
|
|
|
// TODO: Reference additional headers your program requires here.
|