blob: 893c6e54c96bac1445754803f20d89a2939fd0f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __ASURA_MUTEX_H__
#define __ASURA_MUTEX_H__
namespace AsuraEngine
{
namespace Threading
{
class Mutex
{
public:
void Lock();
void Unlock();
};
}
}
#endif
|