OutRun/src/include/clouds.h

28 lines
334 B
C
Raw Normal View History

2022-03-07 15:24:04 +01:00
#ifndef CLOUDS_H
#define CLOUDS_H
#include <stdint.h>
enum CloudType
{
SMALLCLOUD = 0,
MEDIUMCLOUD = 1,
BIGCLOUD = 2
};
class Clouds
{
public:
Clouds();
Clouds( int16_t x, int16_t y, int8_t t );
~Clouds();
int16_t X;
int16_t Y;
2022-03-11 22:44:47 +01:00
int8_t Type;
2022-03-07 15:24:04 +01:00
};
#endif // CLOUDS_H