spidey-decomp/friction.h
krystalgamer 0ab70dcccb Linux build
Added workflow

Fix pipeline

Introduced fixed-size type and fixed size on Linux
2024-06-07 20:16:17 +02:00

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