blob: c5b1aa3c4f59faee7efad87c1c235e37479b76f8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package at.hannibal2.skyhanni.utils.jsonobjects;
import com.google.gson.annotations.Expose;
import java.util.List;
public class WarpsJson {
@Expose
public List<String> warpCommands;
}
|