couch/core/Ball.h

12 lines
119 B
C
Raw Normal View History

2021-01-13 10:42:57 -06:00
#ifndef BALL_H
#define BALL_H
#include "Mesh.h"
class Ball : public Mesh {
public:
Ball();
};
#endif /* BALL_H */