diff options
| author | auth12 <[email protected]> | 2020-07-16 13:37:51 +0100 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-07-16 13:37:51 +0100 |
| commit | e2379c4956099294994e090b9bede94bbbbdcab1 (patch) | |
| tree | c62f61d77157e8eed8d4ad90db93fc79b587ba36 /client/src/main.cpp | |
| parent | Client login handling on server. (diff) | |
| download | loader-e2379c4956099294994e090b9bede94bbbbdcab1.tar.xz loader-e2379c4956099294994e090b9bede94bbbbdcab1.zip | |
Added windows support on client.
Diffstat (limited to 'client/src/main.cpp')
| -rw-r--r-- | client/src/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/main.cpp b/client/src/main.cpp index cef083f..330096c 100644 --- a/client/src/main.cpp +++ b/client/src/main.cpp @@ -1,7 +1,7 @@ #include "include.h" #include "util/io.h" #include "client/client.h" -#include "assembler/assembler.h" +#include "assembler/shellcode.h" int main(int argc, char* argv[]) { io::init(); @@ -114,4 +114,6 @@ int main(int argc, char* argv[]) { break; } } + + std::cin.get(); } |