mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
10 lines
217 B
C++
10 lines
217 B
C++
#include "reader.hpp"
|
|
#include "manager.hpp"
|
|
|
|
namespace xna {
|
|
sptr<ContentReader> ContentReader::Create(ContentManager* contentManager, Stream& input, String const& assetName)
|
|
{
|
|
return sptr<ContentReader>();
|
|
}
|
|
}
|