1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 02:15:33 +00:00
openmw-tes3mp/apps/openmw/mwrender/objects.hpp
2011-10-31 23:59:16 -04:00

18 lines
No EOL
440 B
C++

#include "components/esm_store/cell_store.hpp"
#include "../mwworld/refdata.hpp"
namespace MWRender{
class Objects{
public:
Objects(){}
~Objects(){}
void insertBegin (ESM::CellRef &ref, bool static_ = false);
void insertMesh(const std::string &mesh);
/// insert a light related to the most recent insertBegin call.
void insertLight(float r, float g, float b, float radius);
void insertObjectPhysics();
};
}