summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/image/image_decode_task.cpp
blob: 954749ab851a79f4324144e2b2c4fdde7a40fbf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "image_decode_task.h"

namespace AsuraEngine
{
	namespace Image
	{

		bool ImageDecodeTask::Execute()
		{
			return false; 
		}

		void ImageDecodeTask::Invoke(lua_State* invokeThreaad)
		{

		}

	}
}