summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/FileSystem/DecodedData.cpp
blob: 90726cfd5dd3a450f774e19dc23978943782c48b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "DecodedData.h"

namespace AsuraEngine
{
	namespace Filesystem
	{

		DecodedData::DecodedData(const DataBuffer* databuffer)
		{
			Decode(databuffer);
		}

		DecodedData::~DecodedData()
		{

		}

	}
}