19 lines
212 B
C++
19 lines
212 B
C++
/*
|
|
* hitrate.hpp
|
|
*
|
|
* Created on: Aug 16, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace hitrate
|
|
{
|
|
|
|
extern int count_shots;
|
|
extern int count_hits;
|
|
extern int count_hits_head;
|
|
|
|
void Update();
|
|
}
|