Files
lime/project/include/system/Mutex.h
2018-07-18 17:32:51 -07:00

31 lines
236 B
C++

#ifndef LIME_SYSTEM_MUTEX_H
#define LIME_SYSTEM_MUTEX_H
namespace lime {
class Mutex {
public:
Mutex ();
~Mutex ();
bool Lock ();
bool TryLock ();
bool Unlock ();
private:
void* mutex;
};
}
#endif