Show rock.h syntax highlighted
/***************************************************************************
rock.h - description
-------------------
begin : Fri Nov 15 2002
copyright : (C) 2002 by Brendon Higgins
email : freepop-devel@lists.sourceforge.net
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef ROCK_H_INCLUDED
#define ROCK_H_INCLUDED
/**
* Represents some rock in the world. Conatins common constants.
* Rocks are pretty simple, and have no constants beyond entity defaults.
*/
namespace Rock {
/**
* Destruction reasons.
*/
namespace Destroy {
/**
* It was sunk into the ocean.
*/
extern const int SUNK;
}
}
#endif /* ROCK_H_INCLUDED */
See more files for this project here