mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
SDK - Changed TArray function name "Num" to "Count" for clarity CONFIG - included additional helper functions FEATURE - General cleanup - Include features as functions NOTES: - new feature functions have not been implemented ~squish-- Update feature.h - forgot to include function declarations
25 lines
502 B
C
25 lines
502 B
C
#pragma once
|
|
#include "include/Menu.hpp"
|
|
#include "config.h"
|
|
#include <Windows.h>
|
|
|
|
void ESP();
|
|
|
|
void DrawUActorComponent(SDK::TArray<SDK::UActorComponent*> Comps,ImColor color);
|
|
|
|
void DrawPosition();
|
|
|
|
|
|
void ResetStamina();
|
|
|
|
void SetInfiniteAmmo(bool bInfAmmo);
|
|
|
|
void SetCraftingSpeed(float mNewSpeed, bool bRestoreDefault = false);
|
|
|
|
void AddTechPoints(__int32 mPoints);
|
|
|
|
void AddAncientTechPoints(__int32 mPoints);
|
|
|
|
void RemoveTechPoints(__int32 mPoints);
|
|
|
|
void RemoveAncientTechPoint(__int32 mPoints); |