celestia/src/celengine/execenv.h

30 lines
736 B
C++

// execenv.h
//
// Copyright (C) 2001 Chris Laurel <claurel@shatters.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
#ifndef _EXECENV_H_
#define _EXECENV_H_
#include <string>
#include <celengine/render.h>
#include <celengine/simulation.h>
class ExecutionEnvironment
{
public:
ExecutionEnvironment() {};
virtual inline Simulation* getSimulation() const = 0;
virtual inline Renderer* getRenderer() const = 0;
virtual void showText(std::string, int, int, int, int, double) = 0;
};
#endif // _EXECENV_H_