1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/xna.h

23 lines
644 B
C
Raw Normal View History

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"
#include "platform/gdevicemanager-dx.hpp"
2024-04-07 14:06:12 -03:00
#include "platform/texture-dx.hpp"
2024-04-14 21:23:09 -03:00
#include "platform/spritebatch-dx.hpp"
#include "common/color.hpp"
#include "platform/keyboard-dx.hpp"
2024-04-16 19:27:05 -03:00
#include "platform/mouse-dx.hpp"
2024-04-17 20:21:17 -03:00
#include "platform/gamepad-dx.hpp"
2024-03-18 15:41:46 -03:00
// TODO: Reference additional headers your program requires here.