Skip to content

Commit

Permalink
refactor(world): renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
ms0g committed Apr 23, 2024
1 parent 40f7785 commit cc1454d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ int main(int argc, char** argv) {
Skybox skyBox{};

World world{};
world.setState(states::cube);
world.setState(state::cube);

cae.run(world, skyBox);

Expand Down
2 changes: 1 addition & 1 deletion src/world/states.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <vector>
#include "glm/glm.hpp"

namespace states {
namespace state {

static std::vector<glm::vec3> cube = {
{0.0f, -1.0f, 0.0f},
Expand Down

0 comments on commit cc1454d

Please sign in to comment.