mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
14 lines
332 B
C
14 lines
332 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 "graphics/device.hpp"
|
|||
|
|
|||
|
// TODO: Reference additional headers your program requires here.
|