This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/views/esp/view_esp.hpp

12 lines
207 B
C++
Raw Normal View History

#pragma once
2022-09-12 14:48:42 -04:00
#include "services/players/player_service.hpp"
namespace big
{
class esp
{
public:
static void draw();
2022-09-12 14:48:42 -04:00
static void draw_player(const player_ptr& plyr, ImDrawList* const draw_list);
};
}