mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
20 lines
422 B
C++
20 lines
422 B
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#include "RegisterCallbacks.h"
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
std::unordered_set<RegisterCallback>& getRegisterCallbacks()
|
|
{
|
|
static std::unordered_set<RegisterCallback> cbs;
|
|
return cbs;
|
|
}
|
|
|
|
int addTestCallback(RegisterCallback cb)
|
|
{
|
|
getRegisterCallbacks().insert(cb);
|
|
return 0;
|
|
}
|
|
|
|
} // namespace Luau
|