~ruther/NosSmooth

ref: da6f3c2a1d653264f602010e0e868ea2f0e0619c NosSmooth/Local/NosSmooth.LocalCore/NosSmoothCore.h -rw-r--r-- 431 bytes
da6f3c2a — František Boháček fix: allow packet interceptor to reference nostale client 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once
#using <mscorlib.dll> // to use Console::WriteLine

#include "Character.h"
#include "ModuleHook.h"
#include "Network.h"
#include "NostaleString.h"
#include <stdio.h> // to printf()

namespace NosSmoothCore
{
	public ref class NosClient
	{
	public:
		NosClient();
		~NosClient();
		Character^ GetCharacter();
		Network^ GetNetwork();
		void ResetHooks();
	private:
		Network^ _network;
		Character^ _character;
	};
}
Do not follow this link