Shipwright/ZAPDTR/ZAPDUtils/Vec3f.h
Kenix3 51e4485966
LUS Cleanup: Merge Window and GlobalCtx2 classes. (#1259)
* Merges GlobalCtx2 and Window classes.

* Includes condition variable in File.

* add mac specific include

* sstream to get past "implicit instantiation of undefined template" error

* switch/wiiu includes

* that file doesn't exist

* more wii u globalctx2 stuff

Co-authored-by: briaguya <briaguya@alice>
2022-08-21 21:08:01 -04:00

19 lines
165 B
C

#pragma once
struct Vec3f
{
float x, y, z;
Vec3f()
{
x = 0;
y = 0;
z = 0;
};
Vec3f(float nX, float nY, float nZ)
{
x = nX;
y = nY;
z = nZ;
};
};