Added the <source> tag to the tiles file.
[potpourri.git] / src / Engine.cpp
blob266f7ce1f1d10587173188e328d627d46b7a571a
1 // Copyright 2008 Brian Caine
3 // This file is part of Potpourri.
5 // Potpourri is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Potpourri is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTIBILITY of FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Potpourri. If not, see <http://www.gnu.org/licenses/>.
19 // NOTES:
21 // This is the sauce for the Engine class
23 #include "Engine.h"
25 using namespace fragrant;
27 Engine* Engine::getEngine(std::map<std::string, std::string> arguments)
29 return 0;
32 int Engine::run()
34 return 1;
37 Engine* Engine::the_pointer = 0;
38 bool Engine::was_made = false;