mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 16:50:54 +01:00
17 lines
385 B
C
17 lines
385 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace f4mp
|
||
|
|
{
|
||
|
|
namespace animations
|
||
|
|
{
|
||
|
|
extern const UCHAR idle[];
|
||
|
|
extern const UCHAR jogForward[];
|
||
|
|
extern const UCHAR jogForwardRight[];
|
||
|
|
extern const UCHAR jogRight[];
|
||
|
|
extern const UCHAR jogBackwardRight[];
|
||
|
|
extern const UCHAR jogBackward[];
|
||
|
|
extern const UCHAR jogBackwardLeft[];
|
||
|
|
extern const UCHAR jogLeft[];
|
||
|
|
extern const UCHAR jogForwardLeft[];
|
||
|
|
}
|
||
|
|
}
|