/* * 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 verb /// internal sealed class xAPIVerb : xAPIDefinition { /// /// Creates an empty xAPIVerb /// public xAPIVerb() : base() { } /// /// Creates an xAPIVerb /// /// Context of the verb /// (File) name of the verb /// Names of the verb by language /// Descriptions of the verb by language public xAPIVerb(string context, string name, IDictionary names, Dictionary descriptions) : base(context, name, names, descriptions) { } public override string GetDefinitionGroup() => "verbs"; } } #endif