mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +01:00
16 lines
162 B
C++
16 lines
162 B
C++
|
#pragma once
|
||
|
|
||
|
namespace HLE {
|
||
|
|
||
|
namespace OS {
|
||
|
|
||
|
class FakeThread;
|
||
|
|
||
|
struct FakeNEWS {
|
||
|
FakeNEWS(FakeThread& thread);
|
||
|
};
|
||
|
|
||
|
} // namespace OS
|
||
|
|
||
|
} // namespace HLE
|