
git-subtree-dir: Runtime/HumanoidControl/Scripts/Networking/Roboid/ControlCore git-subtree-split: 9919aa6578dac8462626e7ad4129cac1392775ee
15 lines
318 B
C#
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;
|
|
}
|
|
}
|
|
} |