Text.h
changeset 0 6b8091ca909a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Text.h	Thu May 18 23:12:51 2006 +0200
@@ -0,0 +1,18 @@
+#include <vector>
+#include "Rectangle.h"
+#include "Bitmap.h"
+
+using namespace std;
+
+class Text
+{
+	vector<Rectangle> Lines;
+
+public:
+	void getLines(Bitmap *map);
+
+	// Constants
+	static const int MinVertSeparation=3;
+	static const int MinLineSize=5;
+	static const int NoiseTolerance=6;
+};