package com.zjinja.mcmod.decor.utils.model_dir_util; public class RotationVector { public int RotateX = 0; public int RotateY = 0; public int RotateZ = 0; public RotationVector(int rx, int ry, int rz){ RotateX = rx % 4; RotateY = ry % 4; RotateZ = rz % 4; } public RotationVector(){ this(0, 0, 0); } }