mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-02 08:35:08 -04:00
51e4485966
* 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>
19 lines
165 B
C
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;
|
|
};
|
|
}; |