emoji.hpp

This commit is contained in:
BenCat07 2018-02-28 18:43:55 +01:00 committed by GitHub
parent fad69ac0b6
commit fc9aacc3f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,7 @@ public:
// //
extern std::array<ESPData, 2048> data; extern std::array<ESPData, 2048> data;
extern hitbox_cache::CachedHitbox *hitboxcache[32][18];
void CreateMove(); void CreateMove();
void Draw(); void Draw();
@ -47,6 +48,7 @@ void Draw();
// Entity Processing // Entity Processing
void __attribute__((fastcall)) ProcessEntity(CachedEntity *ent); void __attribute__((fastcall)) ProcessEntity(CachedEntity *ent);
void __attribute__((fastcall)) ProcessEntityPT(CachedEntity *ent); void __attribute__((fastcall)) ProcessEntityPT(CachedEntity *ent);
void __attribute__((fastcall)) emoji(CachedEntity *ent);
// helper funcs // helper funcs
void __attribute__((fastcall)) DrawBox(CachedEntity *ent, const rgba_t &clr); void __attribute__((fastcall)) DrawBox(CachedEntity *ent, const rgba_t &clr);