mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-14 19:10:25 +00:00
* remove zap * git subrepo clone https://github.com/zeldaret/ZAPD.git tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "cd4a8760b" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "cd4a8760b" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * remove thanks.md * zap2 -> zapd and spec changes * remove submodule init
10 lines
No EOL
143 B
C
10 lines
No EOL
143 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct Vec3s
|
|
{
|
|
int16_t x, y, z;
|
|
|
|
Vec3s(int16_t nX, int16_t nY, int16_t nZ) { x = nX; y = nY; z = nZ; };
|
|
}; |