This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package dev.lyze.reflection; | |
import com.badlogic.gdx.math.Vector2; | |
public class Projectile { | |
private Vector2 pos; | |
private Vector2 dir; | |
public Projectile(Vector2 pos, Vector2 dir) { | |
this.pos = pos; |
