aboutsummaryrefslogtreecommitdiff
path: root/src/sandbox.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sandbox.hpp')
-rw-r--r--src/sandbox.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sandbox.hpp b/src/sandbox.hpp
index f65caaf..bc6f928 100644
--- a/src/sandbox.hpp
+++ b/src/sandbox.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "pcg.hpp"
+#include "rand.hpp"
#include <cstdint>
#include <vector>
@@ -30,7 +30,7 @@ struct Tile {
struct Sandbox {
std::vector<uint32_t> _bitmap;
std::vector<Tile> _a;
- Pcg32 _pcg;
+ RandomState _rand;
Tile _wall_tile;
int width, height;
int _x, _y;