mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
0ab70dcccb
Added workflow Fix pipeline Introduced fixed-size type and fixed size on Linux
20 lines
284 B
C++
20 lines
284 B
C++
// friction.h: interface for the CFriction class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#pragma once
|
|
|
|
|
|
#ifndef FRICTION_H
|
|
#define FRICTION_H
|
|
|
|
class CFriction
|
|
{
|
|
public:
|
|
unsigned char vx;
|
|
unsigned char vy;
|
|
unsigned char vz;
|
|
|
|
};
|
|
|
|
#endif
|