mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
16 lines
335 B
C++
16 lines
335 B
C++
#ifndef XNA_CONTENT_READER_HPP
|
|
#define XNA_CONTENT_READER_HPP
|
|
|
|
#include "../default.hpp"
|
|
|
|
namespace xna {
|
|
class ContentReader {
|
|
public:
|
|
static sptr<ContentReader> Create(ContentManager* contentManager, Stream& input, String const& assetName);
|
|
|
|
private:
|
|
//ContentReader(ContentManager* contentManager, Stream& inut)
|
|
};
|
|
}
|
|
|
|
#endif |