trick/trick_sims/ODE/models/DrawStuff/DrawStuffObject.hh
Alex Lin 5a7cd1839b Split test sims and fun sims into separate directories.
I created an ODE directory and moved the ODE sims into it.  I moved
the Ball++ models into SIM_Ball++_L1 and flattened the directory
structure.

refs #191
2016-02-25 16:04:27 -06:00

21 lines
334 B
C++

/*
PURPOSE:
(Bouncing ball)
LIBRARY DEPENDENCY:
((DrawStuffObject.cpp))
*/
#ifndef DRAWSTUFFOBJECT_HH
#define DRAWSTUFFOBJECT_HH
class DrawStuffObject {
public:
virtual ~DrawStuffObject() ;
virtual void add_object() ;
virtual int draw() = 0 ;
virtual void command(int cmd) ;
} ;
#endif