Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/fps/src/libraries/tools/fps/misc.cpp @ 6819

Last change on this file since 6819 was 6819, checked in by landauf, 14 years ago

copy paste of all BZN bsp renderer files

  • Property svn:eol-style set to native
File size: 969 bytes
Line 
1/*
2===========================================================================
3Copyright (C) 2008 Daniel Örstadius
4
5This file is part of bsp-renderer source code.
6
7bsp-renderer is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12bsp-renderer is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with bsp-renderer.  If not, see <http://www.gnu.org/licenses/>.
19
20*/
21
22// misc.cpp -- various definitions and functions
23
24#include "misc.h"
25
26void exitFunction(string reason)
27{
28  cerr << "\n" << reason << "\n";
29  cerr << "exiting\n";
30  Sleep(3000);
31  exit(1);
32}
Note: See TracBrowser for help on using the repository browser.