summaryrefslogtreecommitdiff
path: root/tools/ZAPD/ZAPDUtils/Vec3s.h
blob: 05816eddb5d0a190672927c45fc0e0f2f5e8312b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <cstdint>

struct Vec3s
{
	int16_t x, y, z;

	Vec3s()
	{
		x = 0;
		y = 0;
		z = 0;
	};
	Vec3s(int16_t nX, int16_t nY, int16_t nZ)
	{
		x = nX;
		y = nY;
		z = nZ;
	};
};