summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/filesystem/decoded_data.cpp
blob: 125c6525a14e1e65d88836cabb4b7775ca411308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "DecodedData.h"
#include "Exceptions/Exception.h"

namespace AsuraEngine
{
	namespace Filesystem
	{

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

		DecodedData::~DecodedData()
		{

		}

	}
}