summaryrefslogtreecommitdiff
path: root/cheat/gmod/ClientClass.hpp
blob: b1d69ddf447ff646ec1cb3086460a9babba235d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Valve/dt_common.h"
#include "Valve/dt_recv.h"


class ClientClass {
public:
	void* m_create_fn;
	void* m_createevent_fn;
	char* m_name;
	RecvTable* m_rt_table;
	ClientClass* m_next;
	int m_class_id;
};