aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/text_cursor.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-19 22:43:02 -0400
committerPaul Gilbert2016-03-19 22:43:02 -0400
commitc6b239bdac7c193bc4d0fe8cfc6fbb610d1ca1ca (patch)
tree862aab6db5bfa6f695f150b418b20cdf077ca9fc /engines/titanic/text_cursor.cpp
parentdbd8ab0f1c11f1e749c74fe70e5fc2496332a1c5 (diff)
downloadscummvm-rg350-c6b239bdac7c193bc4d0fe8cfc6fbb610d1ca1ca.tar.gz
scummvm-rg350-c6b239bdac7c193bc4d0fe8cfc6fbb610d1ca1ca.tar.bz2
scummvm-rg350-c6b239bdac7c193bc4d0fe8cfc6fbb610d1ca1ca.zip
TITANIC: Implemented CGameManager::update
Diffstat (limited to 'engines/titanic/text_cursor.cpp')
-rw-r--r--engines/titanic/text_cursor.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/engines/titanic/text_cursor.cpp b/engines/titanic/text_cursor.cpp
new file mode 100644
index 0000000000..e591dc38ed
--- /dev/null
+++ b/engines/titanic/text_cursor.cpp
@@ -0,0 +1,37 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#include "common/rect.h"
+#include "common/textconsole.h"
+#include "titanic/text_cursor.h"
+
+namespace Titanic {
+
+CTextCursor::CTextCursor() : _active(false) {
+}
+
+Common::Rect CTextCursor::getBounds() {
+ warning("CTextCursor::getBounds");
+ return Common::Rect();
+}
+
+} // End of namespace Titanic