couch/core/Ball.h
2021-01-13 10:42:57 -06:00

12 lines
119 B
C++

#ifndef BALL_H
#define BALL_H
#include "Mesh.h"
class Ball : public Mesh {
public:
Ball();
};
#endif /* BALL_H */