2013-11-21 13:50:43 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef Reources_h
|
|
|
|
#define Reources_h
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include "../OysterGraphics/Core/Core.h"
|
|
|
|
|
|
|
|
namespace Oyster
|
|
|
|
{
|
|
|
|
namespace Graphics
|
|
|
|
{
|
|
|
|
namespace Render
|
|
|
|
{
|
|
|
|
class Resources
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static Core::ShaderManager::ShaderEffect obj;
|
2013-11-26 09:09:35 +01:00
|
|
|
static Core::Buffer ModelData;
|
|
|
|
static Core::Buffer VPData;
|
2013-11-21 13:50:43 +01:00
|
|
|
|
|
|
|
static Core::Init::State Init();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|