1// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details 2#pragma once 3 4struct lua_State; 5 6void countersInit(lua_State* L); 7bool countersActive(); 8 9void countersTrack(lua_State* L, int funcindex); 10void countersDump(const char* path); 11 12