summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/io/decoded_data.cpp
blob: b20845525f69be45161434b9f25bcba4ee21ab29 (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 IO
	{

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

		DecodedData::~DecodedData()
		{

		}

	}
}