r3-legacy/src/game-lib-api-vector3.js

5 lines
118 B
JavaScript
Raw Normal View History

2016-11-29 12:54:25 +01:00
GameLib.D3.API.Vector3 = function Vector3(x, y, z) {
this.x = x || 0;
this.y = y || 0;
this.z = z || 0;
};