mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-14 20:07:08 +02:00
22 lines
538 B
C++
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;
|
|
}
|