/* * SPDX-License-Identifier: AGPL-3.0-or-later * Copyright (C) 2025 Sergej Görzen * This file is part of xAPI4Unity. */ #if UNITY_EDITOR using System.Collections.Generic; namespace xAPI4Unity.Editor.Parser.Definitions { /// /// Class that represents an xAPI activity /// internal sealed class xAPIActivity : xAPIDefinition { /// /// Creates an empty xAPIActivity /// public xAPIActivity() : base() { } /// /// Creates an xAPIActivity /// /// Context of the activity /// (File) name of the activity /// Names of the activity by language /// Descriptions of the activity by language public xAPIActivity(string context, string name, IDictionary names, Dictionary descriptions) : base(context, name, names, descriptions) { } public override string GetDefinitionGroup() => "activities"; } } #endif