2024-03-18 15:41:46 -03:00
|
|
|
|
// 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"
|
2024-03-21 16:01:47 -03:00
|
|
|
|
#include "platform/device-dx.hpp"
|
|
|
|
|
#include "platform/game-dx.hpp"
|
2024-03-26 17:22:00 -03:00
|
|
|
|
#include "csharp/stream.hpp"
|
2024-04-01 11:29:32 -03:00
|
|
|
|
#include "platform/gdevicemanager-dx.hpp"
|
2024-04-07 14:06:12 -03:00
|
|
|
|
#include "platform/texture-dx.hpp"
|
2024-03-18 15:41:46 -03:00
|
|
|
|
|
|
|
|
|
// TODO: Reference additional headers your program requires here.
|