summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorjacob1 <jfu614@gmail.com>2013-03-06 17:05:59 (GMT)
committer jacob1 <jfu614@gmail.com>2013-03-06 17:05:59 (GMT)
commit037618e6f8e6a37574f7ef8ffd90e490fb0ea137 (patch)
treed80246d31a26aee7735a566bccc8ce9e8e4e305d /src/game
parentad951eb9af20cd1a784fab39c41ade1c19dff2ca (diff)
downloadpowder-037618e6f8e6a37574f7ef8ffd90e490fb0ea137.zip
powder-037618e6f8e6a37574f7ef8ffd90e490fb0ea137.tar.gz
remove auto generated comments from all files, fix some missing tabs, remove unused variables from config.h
Diffstat (limited to 'src/game')
-rw-r--r--src/game/Brush.h6
-rw-r--r--src/game/EllipseBrush.h7
-rw-r--r--src/game/GameModelException.h13
-rw-r--r--src/game/Menu.h7
-rw-r--r--src/game/Notification.h7
-rw-r--r--src/game/Tool.cpp7
-rw-r--r--src/game/Tool.h7
-rw-r--r--src/game/ToolButton.cpp10
-rw-r--r--src/game/ToolButton.h7
9 files changed, 4 insertions, 67 deletions
diff --git a/src/game/Brush.h b/src/game/Brush.h
index b59d017..7671caf 100644
--- a/src/game/Brush.h
+++ b/src/game/Brush.h
@@ -1,9 +1,3 @@
-/*
- * Brush.h
- *
- * Created on: Jan 22, 2012
- * Author: Simon
- */
#ifndef BRUSH_H_
#define BRUSH_H_
diff --git a/src/game/EllipseBrush.h b/src/game/EllipseBrush.h
index 80215b5..ad28766 100644
--- a/src/game/EllipseBrush.h
+++ b/src/game/EllipseBrush.h
@@ -1,10 +1,3 @@
-/*
- * ElipseBrush.h
- *
- * Created on: Jan 26, 2012
- * Author: Simon
- */
-
#ifndef ELIPSEBRUSH_H_
#define ELIPSEBRUSH_H_
diff --git a/src/game/GameModelException.h b/src/game/GameModelException.h
index 05138f2..c95f7e6 100644
--- a/src/game/GameModelException.h
+++ b/src/game/GameModelException.h
@@ -1,12 +1,5 @@
-/*
- * SaveLoadException.h
- *
- * Created on: Mar 29, 2012
- * Author: Simon
- */
-
-#ifndef SAVELOADEXCEPTION_H_
-#define SAVELOADEXCEPTION_H_
+#ifndef GAMEMODELEXCEPTION_H_
+#define GAMEMODELEXCEPTION_H_
#include <string>
#include <exception>
@@ -23,4 +16,4 @@ public:
~GameModelException() throw() {};
};
-#endif /* SAVELOADEXCEPTION_H_ */
+#endif /* GAMEMODELEXCEPTION_H_ */
diff --git a/src/game/Menu.h b/src/game/Menu.h
index 261193e..3f955e1 100644
--- a/src/game/Menu.h
+++ b/src/game/Menu.h
@@ -1,10 +1,3 @@
-/*
- * Menu.h
- *
- * Created on: Jan 22, 2012
- * Author: Simon
- */
-
#ifndef MENU_H_
#define MENU_H_
diff --git a/src/game/Notification.h b/src/game/Notification.h
index 4c64dea..b2bf6f8 100644
--- a/src/game/Notification.h
+++ b/src/game/Notification.h
@@ -1,10 +1,3 @@
-/*
- * Notification.h
- *
- * Created on: Jun 20, 2012
- * Author: Simon
- */
-
#ifndef NOTIFICATION_H_
#define NOTIFICATION_H_
diff --git a/src/game/Tool.cpp b/src/game/Tool.cpp
index 5be44b6..b0ad67a 100644
--- a/src/game/Tool.cpp
+++ b/src/game/Tool.cpp
@@ -1,10 +1,3 @@
-/*
- * Tool.cpp
- *
- * Created on: Jun 24, 2012
- * Author: Simon
- */
-
#include <string>
#include "Tool.h"
#include "game/Brush.h"
diff --git a/src/game/Tool.h b/src/game/Tool.h
index 22898c7..0c8ab65 100644
--- a/src/game/Tool.h
+++ b/src/game/Tool.h
@@ -1,10 +1,3 @@
-/*
- * Tool.h
- *
- * Created on: Jan 22, 2012
- * Author: Simon
- */
-
#ifndef TOOL_H_
#define TOOL_H_
diff --git a/src/game/ToolButton.cpp b/src/game/ToolButton.cpp
index 70b93a2..575167f 100644
--- a/src/game/ToolButton.cpp
+++ b/src/game/ToolButton.cpp
@@ -1,10 +1,3 @@
-/*
- * ToolButton.cpp
- *
- * Created on: Jan 30, 2012
- * Author: Simon
- */
-
#include "ToolButton.h"
#include "interface/Keys.h"
@@ -17,7 +10,7 @@ ToolButton::ToolButton(ui::Point position, ui::Point size, std::string text_, st
void ToolButton::OnMouseClick(int x, int y, unsigned int button)
{
- isButtonDown = true;
+ isButtonDown = true;
}
void ToolButton::OnMouseUnclick(int x, int y, unsigned int button)
@@ -94,6 +87,5 @@ int ToolButton::GetSelectionState()
}
ToolButton::~ToolButton() {
- // TODO Auto-generated destructor stub
}
diff --git a/src/game/ToolButton.h b/src/game/ToolButton.h
index b311d0b..6fdd733 100644
--- a/src/game/ToolButton.h
+++ b/src/game/ToolButton.h
@@ -1,10 +1,3 @@
-/*
- * ToolButton.h
- *
- * Created on: Jan 30, 2012
- * Author: Simon
- */
-
#ifndef TOOLBUTTON_H_
#define TOOLBUTTON_H_