mirror of
https://github.com/brues-code/nampower.git
synced 2026-09-21 23:26:54 +00:00
13 lines
226 B
C++
13 lines
226 B
C++
//
|
|
// Cooldown-related Lua script bindings
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "main.hpp"
|
|
|
|
namespace Nampower {
|
|
uint32_t Script_GetSpellIdCooldown(uintptr_t *luaState);
|
|
uint32_t Script_GetItemIdCooldown(uintptr_t *luaState);
|
|
}
|