10 lines
129 B
C
10 lines
129 B
C
#ifndef LOTOSTATEK_SIZE_H
|
|
#define LOTOSTATEK_SIZE_H
|
|
|
|
struct Size {
|
|
int height;
|
|
int width;
|
|
};
|
|
|
|
#endif //LOTOSTATEK_SIZE_H
|