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

namespace AsuraEngine
{
	namespace Threading
	{

		int ThreadEx::Process()
		{

			return 0;
		}

		void ThreadEx::RegisterModules()
		{

		}

	}
}