mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
11 lines
139 B
C++
11 lines
139 B
C++
#ifndef WORLD_WEATHER_HPP
|
|
#define WORLD_WEATHER_HPP
|
|
|
|
class Weather {
|
|
public:
|
|
// Member functions
|
|
Weather();
|
|
};
|
|
|
|
#endif
|