21 lines
445 B
Java
21 lines
445 B
Java
package electrosphere.server.macro;
|
|
|
|
import org.joml.Vector3d;
|
|
|
|
/**
|
|
* Updates macro data as a player comes into range of it
|
|
*/
|
|
public class MacroDataUpdater {
|
|
|
|
/**
|
|
* Updates the macro data
|
|
* @param macroData The data
|
|
* @param playerPos The player's position
|
|
*/
|
|
public static void update(MacroData macroData, Vector3d playerPos){
|
|
//scan for all objects within update range
|
|
//update them
|
|
}
|
|
|
|
}
|