Updated gemfile, added comments to repairer, updater, and uninstaller task stubs

This commit is contained in:
2021-11-22 12:36:38 -06:00
parent b3665af5c4
commit 8c8a051034
6 changed files with 54 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
class W3DHub
class ApplicationManager
class Updater < Task
def type
:updater
end
def exec_task
# Fetch manifests
# Load manifests
# build file list
# find new packages
# unpack new packages
# TODO: detect patch files and handle them
# update installed game version
end
end
end
end