Camera implemented

This commit is contained in:
2021-12-11 21:32:43 -05:00
parent 10e2b3c538
commit 2308ef4eb2
8 changed files with 170 additions and 22 deletions

View File

@@ -0,0 +1,17 @@
//
// 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