mirror of
https://github.com/halpz/re3.git
synced 2025-01-07 20:15:27 +00:00
10 lines
202 B
C++
10 lines
202 B
C++
#pragma once
|
|
|
|
class CSkidmarks
|
|
{
|
|
public:
|
|
static void Clear(void);
|
|
static void Render(void);
|
|
static void RegisterOne(uint32 id, CVector pos, float fwdx, float fwdY, bool *isMuddy, bool *isBloddy);
|
|
};
|