mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-24 05:49:48 +00:00
17 lines
283 B
C++
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;
|
|
|
|
};
|