Pascal Serrarens b3bb7d2f34 Squashed 'Runtime/HumanoidControl/Scripts/Networking/Roboid/ControlCore/' content from commit 9919aa6
git-subtree-dir: Runtime/HumanoidControl/Scripts/Networking/Roboid/ControlCore
git-subtree-split: 9919aa6578dac8462626e7ad4129cac1392775ee
2024-12-06 13:59:28 +01:00

15 lines
318 B
C#

namespace Passer {
public class Quat32 {
public float x;
public float y;
public float z;
public float w;
public Quat32(float x, float y, float z, float w) {
this.x = x;
this.y = y;
this.z = z;
this.w = w;
}
}
}