This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
nekohook/modules/csgo/sdk/actanimating.h
2020-08-04 13:13:01 -04:00

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