20 lines
458 B
Swift
20 lines
458 B
Swift
//
|
|
// HarmonyMetadataKey+Keys.swift
|
|
// Harmony
|
|
//
|
|
// Created by Hthik on 11/5/18.
|
|
// Copyright © 2018 Hthik. 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")
|
|
}
|