diff options
| author | Halldor Fannar <[email protected]> | 2017-02-09 15:26:47 +0000 |
|---|---|---|
| committer | Halldor Fannar <[email protected]> | 2017-02-09 15:26:47 +0000 |
| commit | b814d180089b1e5415f89554e46de2edd978a592 (patch) | |
| tree | b6a61b518e2b567c7d485913a7fca54f6719bc5c /include/nv/Vec3.h | |
| parent | Initial commit (diff) | |
| download | anselsdk-b814d180089b1e5415f89554e46de2edd978a592.tar.xz anselsdk-b814d180089b1e5415f89554e46de2edd978a592.zip | |
First publish of the SDK.
Diffstat (limited to 'include/nv/Vec3.h')
| -rw-r--r-- | include/nv/Vec3.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/nv/Vec3.h b/include/nv/Vec3.h new file mode 100644 index 0000000..e7e7d86 --- /dev/null +++ b/include/nv/Vec3.h @@ -0,0 +1,12 @@ +#pragma once + +namespace nv +{ + +struct Vec3 +{ + float x, y, z; +}; + + +} // end of nv namspace
\ No newline at end of file |