Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
268B

  1. namespace Svelto.ECS.Components
  2. {
  3. public struct ECSVector4
  4. {
  5. public float x, y, z, w;
  6. public ECSVector4(float X, float Y, float Z, float W)
  7. {
  8. x = X;
  9. y = Y;
  10. z = Z;
  11. w = W;
  12. }
  13. }
  14. }