File: PerlOGREControllerFunction.h

package info (click to toggle)
libogre-perl 0.60-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,844 kB
  • ctags: 459
  • sloc: perl: 6,204; cpp: 507; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _PERLOGRE_CONTROLLERFUNCTION_H_
#define _PERLOGRE_CONTROLLERFUNCTION_H_

#include "PerlOGRECallback.h"

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

    Ogre::Real calculate(Ogre::Real sourceValue);
};


#endif  /* define _PERLOGRE_CONTROLLERFUNCTION_H_ */