Phyzix
Loading...
Searching...
No Matches
src
app
engine
Camera.h
1
//
2
// Created by shams on 8/7/24.
3
//
4
5
#ifndef PHYZIX_CAMERA_H
6
#define PHYZIX_CAMERA_H
7
8
9
#include <cstdint>
10
#include "DynamicObject.h"
11
12
class
Camera
/* : public DynamicObject*/
{
13
private
:
14
uint16_t x_size;
15
uint16_t y_size;
16
17
public
:
18
Camera
(uint16_t x_size, uint16_t y_size) {
19
this->x_size = x_size;
20
this->y_size = y_size;
21
};
22
};
23
24
25
#endif
//PHYZIX_CAMERA_H
Camera
Definition
Camera.h:12
Generated by
1.10.0