mirror of
https://github.com/overte-org/overte.git
synced 2025-04-30 03:02:36 +02:00
17 lines
439 B
C++
17 lines
439 B
C++
//
|
|
// AgentScriptingInterface.cpp
|
|
// assignment-client/src
|
|
//
|
|
// Created by Thijs Wenker on 7/23/18.
|
|
// Copyright 2018 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "AgentScriptingInterface.h"
|
|
|
|
AgentScriptingInterface::AgentScriptingInterface(Agent* agent) :
|
|
QObject(agent),
|
|
_agent(agent)
|
|
{ }
|