Compare commits
2 Commits
c1d88d8288
...
e9b915aa92
Author | SHA1 | Date | |
---|---|---|---|
e9b915aa92 | |||
4d926b1cfd |
17
games/minecraftgame/structures.go
Normal file
17
games/minecraftgame/structures.go
Normal file
@ -0,0 +1,17 @@
|
||||
package minecraftgame
|
||||
|
||||
type JavaVersion struct {
|
||||
Version `json:"version"`
|
||||
Specifics []struct {
|
||||
Os string `json:"os"`
|
||||
Arch string `json:"arch"`
|
||||
URL string `json:"URL"`
|
||||
Sha1 string `json:"SHA1"`
|
||||
} `json:"specifics"`
|
||||
}
|
||||
|
||||
type Version struct {
|
||||
Major string `json:"major"`
|
||||
Minor string `json:"minor"`
|
||||
Patch string `json:"patch"`
|
||||
}
|
Loading…
Reference in New Issue
Block a user