From 17da4df96763b267815ab21b1be445b8d09ba9b7 Mon Sep 17 00:00:00 2001 From: Victor Roemer Date: Wed, 14 Sep 2016 21:00:38 -0400 Subject: [PATCH] Remove unused script.h --- src/script/script.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/script/script.h diff --git a/src/script/script.h b/src/script/script.h deleted file mode 100644 index 8910c56b2..000000000 --- a/src/script/script.h +++ /dev/null @@ -1,35 +0,0 @@ -// This file is part of Tremulous. -// Copyright © 2016 Victor Roemer (blowfish) -// -// 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, see . - -#ifndef __cplusplus -#error __file__ " is only available to C++" -#endif - -#ifndef SCRIPT_H -#define SCRIPT_H - -//#include "../sol/sol.hpp" - -class ScriptApi { -public: -}; - -class ScriptManager { - static void add_plugin(const class ScriptApi*); - static void instantiate(const ScriptApi*); -}; - -#endif