Show entityfactory.h syntax highlighted
/***************************************************************************
entityfactory.h
-------------------
begin : Tue Jun 1 2004
copyright : (C) 2004 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 ENTITYFACTORY_H_INCLUDED
#define ENTITYFACTORY_H_INCLUDED
/**
* Defines integers identifying types of entities.
*/
namespace EntityFactory {
/**
* A tree.
*/
extern const int TREE;
/**
* A peep magnet.
*/
extern const int PEEPMAGNET;
/**
* A fire column.
*/
extern const int FIRECOLUMN;
/**
* A peep.
*/
extern const int PEEP;
/**
* A town.
*/
extern const int TOWN;
/**
* A rock.
*/
extern const int ROCK;
/**
* Some crops.
*/
extern const int CROPS;
/**
* A swamp.
*/
extern const int SWAMP;
}
#endif /* ndef ENTITYFACTORY_H_INCLUDED */
See more files for this project here