/* * Derived from Epic Fight (https://github.com/Epic-Fight/epicfight) * by the Epic Fight Team, licensed under GPLv3. * Modifications © 2026 TiedUp! Remake Contributors, distributed under GPLv3. */ package com.tiedup.remake.rig.math; public class Vec2i { public int x; public int y; public Vec2i(int x, int y) { this.x = x; this.y = y; } @Override public String toString() { return String.format("[%d, %d]", this.x, this.y); } }