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