summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/arena/kross/kross/KrossArena.cpp26
-rw-r--r--plugins/arena/kross/kross/KrossArena.h35
2 files changed, 61 insertions, 0 deletions
diff --git a/plugins/arena/kross/kross/KrossArena.cpp b/plugins/arena/kross/kross/KrossArena.cpp
new file mode 100644
index 00000000..f7c50df7
--- /dev/null
+++ b/plugins/arena/kross/kross/KrossArena.cpp
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2009 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+// Header include
+#include "KrossArena.h"
+
+using namespace Sigencore;
+
+KrossArena::KrossArena(KService::Ptr service, Sigscript::GameWrapper* game, Sigscript::Config* parent) :
+ Arena(game, parent)
+{
+}
diff --git a/plugins/arena/kross/kross/KrossArena.h b/plugins/arena/kross/kross/KrossArena.h
new file mode 100644
index 00000000..907129e3
--- /dev/null
+++ b/plugins/arena/kross/kross/KrossArena.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2009 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef ARENAPLUGIN_KROSSARENA
+#define ARENAPLUGIN_KROSSARENA
+
+// Sigencore plugin includes
+#include <sigencore/Arena.h>
+
+// KDE includes
+#include <KService>
+
+class KrossArena : public Sigencore::Arena
+{
+ Q_OBJECT
+
+ public:
+ KrossArena(KService::Ptr service, Sigscript::GameWrapper* game, Sigscript::Config* parent);
+};
+
+#endif