File: PerlOGREControllerValue.h

package info (click to toggle)
libogre-perl 0.40-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,812 kB
  • ctags: 452
  • sloc: perl: 6,019; cpp: 501; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _PERLOGRE_CONTROLLERVALUE_H_
#define _PERLOGRE_CONTROLLERVALUE_H_

#include "PerlOGRECallback.h"

class PerlOGREControllerValue : public PerlOGRECallback, public Ogre::ControllerValue<Ogre::Real>
{
 public:
    PerlOGREControllerValue(SV *pobj);

    virtual Ogre::Real getValue() const;
    virtual void setValue(Ogre::Real value);
};


#endif  /* define _PERLOGRE_CONTROLLERVALUE_H_ */