blob: e09bf3c9d40f809594f3a3b5745db89d03b313dc (
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;
}
|