mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
16 lines
152 B
C++
16 lines
152 B
C++
#ifndef BOX_H
|
|
#define BOX_H
|
|
|
|
#include"mesh.h"
|
|
|
|
namespace vb01{
|
|
class Box : public Mesh{
|
|
public:
|
|
Box();
|
|
void update();
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|