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/Backtrack.hpp
2018-05-15 18:23:29 +02:00

26 lines
326 B
C++

/*
* Backtrack.hpp
*
* Created on: May 15, 2018
* Author: bencat07
*/
#pragma once
#include "common.hpp"
namespace hacks {
namespace shared {
namespace backtrack {
struct BacktrackData
{
int tickcount;
Vector hitboxpos;
};
void Init();
void Run();
void Draw();
extern BacktrackData headPositions[24][12];
}
}
}