mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 03:12:36 +01:00
26 lines
446 B
C++
26 lines
446 B
C++
#include "State.hpp"
|
|
#include "RWGame.hpp"
|
|
|
|
// This serves as the "initial" camera position.
|
|
ViewCamera defaultView({-250.f, -550.f, 75.f}, glm::angleAxis(glm::radians(5.f), glm::vec3(0.f, 1.f, 0.f)));
|
|
|
|
const ViewCamera& State::getCamera()
|
|
{
|
|
return defaultView;
|
|
}
|
|
|
|
bool State::shouldWorldUpdate()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
GameWorld* State::getWorld()
|
|
{
|
|
return game->getWorld();
|
|
}
|
|
|
|
sf::RenderWindow& State::getWindow()
|
|
{
|
|
return game->getWindow();
|
|
}
|