GBA002/Delta/Extensions/HarmonyMetadataKey+Keys.swift
Riley Testut d1643dbc8f Throws SyncValidationError when downloading corrupted versions of “verified” SaveStates
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.
2023-08-11 18:57:27 -05:00

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")
}