mirror of
https://github.com/halpz/re3.git
synced 2025-02-25 18:52:12 +00:00
11 lines
229 B
C++
11 lines
229 B
C++
#pragma once
|
|
|
|
class CSkidmarks
|
|
{
|
|
public:
|
|
static void Clear(void);
|
|
static void Update(void);
|
|
static void Render(void);
|
|
static void RegisterOne(uint32 id, CVector pos, float fwdx, float fwdY, bool *isMuddy, bool *isBloddy);
|
|
};
|