This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/hacks/Killstreak.hpp
2018-03-29 19:08:31 +02:00

27 lines
302 B
C++
Executable File

/*
* Killstreak.hpp
*
* Created on: Nov 13, 2017
* Author: nullifiedcat
*/
#pragma once
#include "common.hpp"
namespace hacks
{
namespace tf2
{
namespace killstreak
{
int current_streak();
void init();
void shutdown();
void fire_event(IGameEvent *event);
void apply_killstreaks();
}
}
}