16 lines
263 B
C++
16 lines
263 B
C++
#include "sdk.h"
|
|
|
|
#ifndef ACTANIMATING_H
|
|
#define ACTANIMATING_H
|
|
|
|
class CActAnimating {
|
|
public:
|
|
void SetActivity(Activity act);
|
|
inline Activity GetActivity(void) { return m_Activity; }
|
|
|
|
private:
|
|
Activity m_Activity;
|
|
};
|
|
|
|
#endif // ACTANIMATING_H
|