Files
w3dhub_linux_launcher/lib/games/interim_apex.rb

26 lines
644 B
Ruby

class W3DHub
class Games
class InterimApex < Game
def setup
set_name "Interim Apex"
set_icon "#{GAME_ROOT_PATH}/media/icons/ia.png"
set_news_feed "https://w3dhub.com/forum/forum/209-interim-apex.xml"
set_background_color 0xff_034866
menu_item(nil, "Game Settings")
menu_item(nil, "Repair Installation")
menu_item(nil, "Uninstall")
menu_item(nil, "Install Folder")
menu_item(nil, "User Data Folder")
menu_item(nil, "View Screenshots")
play_item("Play Game")
play_item("Single Player")
set_slot(2)
end
end
end
end