blah/public/blah/math/vec4.h
2020-08-26 00:38:01 -07:00

15 lines
205 B
C++

#pragma once
namespace Blah
{
struct Vec4
{
float x;
float y;
float z;
float w;
Vec4() : x(0), y(0), z(0), w(0) {}
Vec4(float x, float y, float z, float w) : x(x), y(y), z(z), w(w) {}
};
}