rnr/src/include/engine/app/v8/world/World.hpp

18 lines
281 B
C++

#ifndef __APP_V8_WORLD_WORLD_HPP__
#define __APP_V8_WORLD_WORLD_HPP__
namespace RBX
{
class World
{
public:
World();
~World();
void preStep();
double step(float timestep);
void update();
};
}
#endif