using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context gestures of type activity as public properties. /// public sealed class xAPI_Extensions_Activity_Gestures : xAPI_Extensions_Activity { public xAPI_Extensions_Activity_Gestures() : base("gestures") { } /// /// Hand which is currently active. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/extensions/activity/hand /// public xAPI_Extensions_Activity_Gestures hand(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "hand", names: new Dictionary { ["en-US"] = "hand", ["de-DE"] = "Hand" }, descriptions: new Dictionary { ["en-US"] = "Hand which is currently active.", ["de-DE"] = "Die Hand, die gerade verwendet wird." }), value); return this; } } }