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
|
|
|
|
|
|
2024-04-23 16:11:17 -03:00
|
|
|
|
#include "common/color.hpp"
|
|
|
|
|
#include "csharp/stream.hpp"
|
2024-03-18 15:41:46 -03:00
|
|
|
|
#include "game/window.hpp"
|
2024-04-23 16:11:17 -03:00
|
|
|
|
#include "platform/adapter-dx.hpp"
|
|
|
|
|
#include "platform/audioengine-dx.hpp"
|
2024-03-21 16:01:47 -03:00
|
|
|
|
#include "platform/device-dx.hpp"
|
|
|
|
|
#include "platform/game-dx.hpp"
|
2024-04-23 16:11:17 -03:00
|
|
|
|
#include "platform/gamepad-dx.hpp"
|
2024-04-01 11:29:32 -03:00
|
|
|
|
#include "platform/gdevicemanager-dx.hpp"
|
2024-04-16 16:13:36 -03:00
|
|
|
|
#include "platform/keyboard-dx.hpp"
|
2024-04-16 19:27:05 -03:00
|
|
|
|
#include "platform/mouse-dx.hpp"
|
2024-04-23 16:11:17 -03:00
|
|
|
|
#include "platform/spritebatch-dx.hpp"
|
|
|
|
|
#include "platform/texture-dx.hpp"
|
|
|
|
|
#include "platform/window-dx.hpp"
|
2024-04-24 21:19:39 -03:00
|
|
|
|
#include "graphics/vertexposition.hpp"
|
|
|
|
|
#include "platform/vertexbuffer-dx.hpp"
|
2024-04-27 00:10:07 -03:00
|
|
|
|
#include "game/component.hpp"
|
2024-04-23 16:11:17 -03:00
|
|
|
|
#include "Windows.h"
|
|
|
|
|
#include <iostream>
|
2024-04-28 20:19:37 -03:00
|
|
|
|
#include "content/manager.hpp"
|
2024-05-01 19:09:43 -03:00
|
|
|
|
#include "content/decstream.hpp"
|
2024-03-18 15:41:46 -03:00
|
|
|
|
|
|
|
|
|
// TODO: Reference additional headers your program requires here.
|