aboutsummaryrefslogtreecommitdiff
path: root/client/src/injection/mapper.h
blob: d1cfa5cfc5f4cc1e117ac2c1d5b48677da0a60ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

namespace mmap {

	void thread(tcp::client& client) {
		while (client.mapper_data.imports.empty()) {
			std::this_thread::sleep_for(std::chrono::milliseconds(100));
		}



	}

};