diff options
Diffstat (limited to 'Source/Asura.Engine/filesystem/decoded_data.cpp')
-rw-r--r-- | Source/Asura.Engine/filesystem/decoded_data.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/Asura.Engine/filesystem/decoded_data.cpp b/Source/Asura.Engine/filesystem/decoded_data.cpp new file mode 100644 index 0000000..125c652 --- /dev/null +++ b/Source/Asura.Engine/filesystem/decoded_data.cpp @@ -0,0 +1,20 @@ +#include "DecodedData.h" +#include "Exceptions/Exception.h" + +namespace AsuraEngine +{ + namespace Filesystem + { + + DecodedData::DecodedData(const DataBuffer* databuffer) + { + Decode(databuffer); + } + + DecodedData::~DecodedData() + { + + } + + } +} |