You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
325 B

#ifndef BUILDING_HPP
#define BUILDING_HPP
namespace e // placeholder namespace name because i don't have a copyright-free username; IEEE might not like me if i release commercial software under my current one
{
class Building
{
private:
char* name;
int genRatePerSec;
};
};
#endif