overte-HifiExperiments/libraries/script-engine/src/Scriptable.cpp
2023-05-19 00:17:34 +02:00

22 lines
538 B
C++

//
// Scriptable.cpp
// libraries/script-engine/src
//
// Created by Heather Anderson on 5/22/21.
// Copyright 2021 Vircadia contributors.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#include "Scriptable.h"
static thread_local ScriptContext* scriptContextStore;
ScriptContext* Scriptable::context() {
return scriptContextStore;
}
void Scriptable::setContext(ScriptContext* context) {
scriptContextStore = context;
}