forked from aly/qstbak
muffin v7.5.6
This commit is contained in:
parent
6266f9e6b7
commit
addf2d530f
619 changed files with 264792 additions and 446022 deletions
28
LLib/LLib.Movement/PlayerMoveControllerFlyInput.cs
Normal file
28
LLib/LLib.Movement/PlayerMoveControllerFlyInput.cs
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace LLib.Movement;
|
||||
|
||||
[StructLayout(LayoutKind.Explicit, Size = 24)]
|
||||
internal struct PlayerMoveControllerFlyInput
|
||||
{
|
||||
[FieldOffset(0)]
|
||||
public float Forward;
|
||||
|
||||
[FieldOffset(4)]
|
||||
public float Left;
|
||||
|
||||
[FieldOffset(8)]
|
||||
public float Up;
|
||||
|
||||
[FieldOffset(12)]
|
||||
public float Turn;
|
||||
|
||||
[FieldOffset(16)]
|
||||
public float Unknown10;
|
||||
|
||||
[FieldOffset(20)]
|
||||
public byte DirMode;
|
||||
|
||||
[FieldOffset(21)]
|
||||
public byte HaveBackwardOrStrafe;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue