aboutsummaryrefslogtreecommitdiff
path: root/Canvas.h
diff options
context:
space:
mode:
Diffstat (limited to 'Canvas.h')
-rw-r--r--Canvas.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Canvas.h b/Canvas.h
index 59e8f7e..2c417ad 100644
--- a/Canvas.h
+++ b/Canvas.h
@@ -1,5 +1,6 @@
#pragma once
+#include <string>
#include <vector>
#include "CanvasData.h"
@@ -9,6 +10,7 @@ class Canvas {
public:
Canvas() = default;
virtual ~Canvas();
+ std::string to_string(bool truecolor = false);
public:
virtual Tile & get_tile(unsigned x, unsigned y);