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

Corrige StepTimer e Move Texture2DReader

This commit is contained in:
Danilo 2024-05-27 17:59:43 -03:00
parent d7deb540d9
commit 11c3b6aa4a
4 changed files with 11 additions and 13 deletions

View File

@ -1,6 +1,6 @@
#include "platform-dx/init.hpp"
#include "csharp/type.hpp"
#include "platform-dx/content-readers/texture2D.hpp"
#include "graphics/readers/texture2D.hpp"
#include "content/typereadermanager.hpp"
#include "content/defaultreaders.hpp"
#include "platform-dx/implementations.hpp"

View File

@ -1,11 +1,10 @@
#ifndef XNA_PLATFORM_CONTENTREADERS_TEXTURE2D_HPP
#define XNA_PLATFORM_CONTENTREADERS_TEXTURE2D_HPP
#ifndef XNA_GRAPHICS_READERS_TEXTURE2D_HPP
#define XNA_GRAPHICS_READERS_TEXTURE2D_HPP
#include "../../content/manager.hpp"
#include "../../content/reader.hpp"
#include "../../csharp/type.hpp"
#include "content/manager.hpp"
#include "content/reader.hpp"
#include "csharp/type.hpp"
#include "graphics/texture.hpp"
#include "platform-dx/implementations.hpp"
namespace xna {
class Texture2DReader : public ContentTypeReaderT<PTexture2D> {

View File

@ -1,5 +1,5 @@
#ifndef XNA_PLATFORM_DX_SLEPTIME_HPP
#define XNA_PLATFORM_DX_SLEPTIME_HPP
#ifndef XNA_PLATFORM_DX_STEPTIMER_HPP
#define XNA_PLATFORM_DX_STEPTIMER_HPP
//
// StepTimer.h - A simple timer that provides elapsed time information
//
@ -10,7 +10,7 @@
#include <cmath>
#include <cstdint>
#include <exception>
#include "headers.hpp"
namespace xna
{

View File

@ -1,5 +1,4 @@
#include "content-readers/texture2d.hpp"
#include "steptimer.hpp"
#include "headers.hpp"
#include "implementations.hpp"
#include "init.hpp"
#include "implementations.hpp"
#include "steptimer.hpp"