Subversion Repositories public iLand

Rev

Rev 280 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef ENVIRONMENT_H
#define ENVIRONMENT_H
class Climate;

class Environment
{
public:
    Environment();
private:
    QList<Climate*> mClimate;
};

#endif // ENVIRONMENT_H