<< Klicken Sie hier um das Inhaltsverzeichnis anzuzeigen >> Navigation: Anleitungen > EmberPlusTcp Plugin konfigurieren > PlayelementActionEventArgs |
using System;
namespace Sohard.Dabis.StudioController.Contracts.Scripting
{
public class PlayelementActionEventArgs : EventArgs
{
public readonly IPlayelementInfo Playelement;
public PlayelementActionEventArgs(IPlayelementInfo playelement)
{
Playelement = playelement;
}
}
}