// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.command.commands.debug.stresstest;

import com.hypixel.hytale.math.vector.Transform;
import com.hypixel.hytale.math.vector.Vector2d;

public class BotConfig
{
    public final double radius;
    public final Vector2d flyYHeight;
    public final double flySpeed;
    public final Transform spawn;
    public final int viewRadius;
    
    public BotConfig(final double radius, final Vector2d flyYHeight, final double flySpeed, final Transform spawn, final int viewRadius) {
        this.radius = radius;
        this.flyYHeight = flyYHeight;
        this.flySpeed = flySpeed;
        this.spawn = spawn;
        this.viewRadius = viewRadius;
    }
}
