SCJMapper-V2/actions/ActionTreeEventArgs.cs
bm98 9696eb1752 V 2.33 - Build 67 BETA
- update for SC 3.0.0 Alpha public
- fix - finding SC game folder - may work automatically for 3.0 Alpha else define it in Settings
- add - get the defaultProfile.xml from LIVE\data.p4k file if possible (real game assets)
- improvement - caching def profile once it is read from disk
- removed - old SC path and folder locators (SCJM does not longer work with pre 3.0 game)
- removed - reference to Iconic.Zip DLL (replaced with Zstd)
- update - defaultProfile.xml as last resort from PTU 3.0-695052 (Dec 18, build)

- move and re-group devices etc.
2017-12-24 00:22:30 +01:00

26 lines
559 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SCJMapper_V2.Actions
{
/// <summary>
/// Event class to automate selection,
/// returns the selected items in the ActionTree
/// </summary>
public class ActionTreeEventArgs : EventArgs
{
public string SelectedAction { get; set; }
public string SelectedCtrl { get; set; }
public ActionTreeEventArgs(string action, string ctrl )
{
SelectedAction = action;
SelectedCtrl = ctrl;
}
}
}