mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-21 20:15:06 +03:00
21 lines
291 B
C++
21 lines
291 B
C++
#ifndef VECTORSTRANSLATE_H
|
|
#define VECTORSTRANSLATE_H
|
|
|
|
#include "basegrenade_shared.h"
|
|
|
|
class CParticleSystem;
|
|
|
|
|
|
class CVectorsTranslate : public CBaseAnimating
|
|
{
|
|
DECLARE_CLASS(CVectorsTranslate, CBaseAnimating);
|
|
|
|
public:
|
|
|
|
Vector Fwd;
|
|
Vector Right;
|
|
Vector Up;
|
|
|
|
};
|
|
|
|
#endif //GRENADESPIT_H
|