mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
5a7cd1839b
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
21 lines
334 B
C++
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
|