mirror of
https://github.com/brues-code/nampower.git
synced 2026-09-21 23:26:54 +00:00
15 lines
293 B
C++
15 lines
293 B
C++
//
|
|
// Created by pmacc on 2/15/2026.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <Windows.h>
|
|
#include "main.hpp"
|
|
|
|
namespace Nampower {
|
|
uint32_t Script_PlayerIsMoving(uintptr_t *luaState);
|
|
uint32_t Script_PlayerIsRooted(uintptr_t *luaState);
|
|
uint32_t Script_PlayerIsSwimming(uintptr_t *luaState);
|
|
}
|