After reviewing save states upon first launch, Delta will upload the verified game ID as metadata to ensure other devices don’t download remote versions with incorrect relationships.
20 lines
470 B
Swift
20 lines
470 B
Swift
//
|
|
// HarmonyMetadataKey+Keys.swift
|
|
// Harmony
|
|
//
|
|
// Created by Riley Testut on 11/5/18.
|
|
// Copyright © 2018 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import Harmony
|
|
|
|
extension HarmonyMetadataKey
|
|
{
|
|
static let gameID = HarmonyMetadataKey("gameID")
|
|
static let gameName = HarmonyMetadataKey("gameName")
|
|
static let verifiedGameID = HarmonyMetadataKey("verifiedGameID")
|
|
|
|
// Backwards compatibility
|
|
static let coreID = HarmonyMetadataKey("coreID")
|
|
}
|