spidey-decomp/friction.h
2023-06-27 21:35:33 +02:00

17 lines
283 B
C++

// friction.h: interface for the CFriction class.
//
//////////////////////////////////////////////////////////////////////
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CFriction
{
public:
unsigned char vx;
unsigned char vy;
unsigned char vz;
};