Overte C++ Documentation
EventTypes.h
1 //
2 // EventTypes.h
3 // libraries/script-engine/src
4 //
5 // Created by Brad Hefta-Gaub on 1/28/14.
6 // Copyright 2014 High Fidelity, Inc.
7 // Cyopright 2023 Overte e.V.
8 //
9 // Distributed under the Apache License, Version 2.0.
10 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
11 // SPDX-License-Identifier: Apache-2.0
12 //
13 
16 
17 #ifndef hifi_EventTypes_h
18 #define hifi_EventTypes_h
19 
20 class ScriptEngine;
21 
22 void registerEventTypes(ScriptEngine* engine);
23 
24 #endif // hifi_EventTypes_h
25 
Provides an engine-independent interface for a scripting engine.
Definition: ScriptEngine.h:93