summaryrefslogtreecommitdiffhomepage
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 41d5ef2..a4cd148 100644
--- a/main.cpp
+++ b/main.cpp
@@ -4,7 +4,7 @@
#include <raylib.h>
#include "App.h"
-#include "DumpSource.h"
+#include "Snapshot.h"
#include "Globals.h"
#include "Reader.h"
#include "View.h"
@@ -17,7 +17,7 @@ int
main(int, char*[])
{
{
- DumpSource source("sample.json");
+ Snapshot source("sample.json");
auto [grids, timeline] = Reader::read(source);
auto view = std::make_unique<View>(std::move(grids), std::move(timeline));
app.assign(std::move(view));