mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
17 lines
188 B
C++
Executable File
17 lines
188 B
C++
Executable File
#ifndef RECTANGLE_H
|
|
#define RECTANGLE_H
|
|
|
|
#include"vector.h"
|
|
|
|
namespace vb01{
|
|
class Rectangle{
|
|
public:
|
|
Rectangle(Vector3);
|
|
~Rectangle();
|
|
void update();
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|