/* * SPDX-License-Identifier: AGPL-3.0-or-later * Copyright (C) 2025 Sergej Görzen * This file is part of OmiLAXR. */ using UnityEngine; namespace OmiLAXR.Pipelines { /// /// Specialized pipeline for learner-specific analytics and tracking. /// Handles individual learning interactions, behaviors, and performance data /// that can be attributed to specific users or learning sessions. /// [AddComponentMenu("OmiLAXR / Core / Learner Pipeline")] public class LearnerPipeline : Pipeline { // Implementation inherits from base Pipeline class // This pipeline specializes in learner-centered events and interactions } }