mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
16 lines
164 B
C++
16 lines
164 B
C++
#ifndef QUAD_H
|
|
#define QUAD_H
|
|
|
|
#include"vector.h"
|
|
#include"mesh.h"
|
|
|
|
namespace vb01{
|
|
class Quad : public Mesh{
|
|
public:
|
|
Quad(Vector3);
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|