mirror of
https://github.com/NoelFB/blah.git
synced 2025-02-22 14:18:29 +08:00
15 lines
205 B
C++
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) {}
|
|
};
|
|
} |