This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2020-08-04 13:13:01 -04:00

23 lines
478 B
C++

/*
*
* Init the below to Hook stuff
*
*/
#pragma once
#include "../sdk/sdk.hpp"
namespace modules::source::hooks {
// Used to mess with user commands
extern CUserCmd* ui_cmd; // For functions not directly in cm but ones that use
// the cmd, only use in world tick
extern bool using_silent; // dont touch, only for use by the
// SetSilentCameraAngle function
void Init();
} // namespace modules::source::hooks