18 lines
209 B
C++
18 lines
209 B
C++
//
|
|
// Created by m on 12/11/21.
|
|
//
|
|
|
|
#ifndef RLA_IIPP_RECTANGLE_HPP
|
|
#define RLA_IIPP_RECTANGLE_HPP
|
|
|
|
|
|
struct Rectangle {
|
|
int x;
|
|
int y;
|
|
int width;
|
|
int height;
|
|
};
|
|
|
|
|
|
#endif //RLA_IIPP_RECTANGLE_HPP
|