2023-02-12 16:43:44 +00:00
|
|
|
package domain
|
2023-01-24 13:46:17 +00:00
|
|
|
|
|
|
|
type SteamGame struct {
|
|
|
|
SkirdaGameId string
|
|
|
|
SteamId string
|
2023-02-12 16:43:44 +00:00
|
|
|
Assets GameUIAssets
|
|
|
|
Arguments Arguments
|
2023-01-24 13:46:17 +00:00
|
|
|
// CurrentVersion string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (game SteamGame) GetSkirdaGameId() string {
|
|
|
|
return game.SkirdaGameId
|
|
|
|
}
|
|
|
|
|
2023-02-12 16:43:44 +00:00
|
|
|
func (game SteamGame) GetUIAssets() GameUIAssets {
|
2023-01-24 13:46:17 +00:00
|
|
|
return game.Assets
|
|
|
|
}
|
|
|
|
|
|
|
|
func (game SteamGame) GetLaunchArgs() []string {
|
|
|
|
return []string{"", ""}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (game SteamGame) GetType() string {
|
2023-02-12 16:43:44 +00:00
|
|
|
return "steam"
|
2023-01-24 13:46:17 +00:00
|
|
|
}
|
2023-01-30 06:23:17 +00:00
|
|
|
|
2023-02-12 16:43:44 +00:00
|
|
|
func (game SteamGame) GetArguments() Arguments {
|
2023-01-30 06:23:17 +00:00
|
|
|
return game.Arguments
|
|
|
|
}
|