mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-10 13:10:25 +00:00
9696eb1752
- 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.
26 lines
559 B
C#
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;
|
|
}
|
|
}
|
|
|
|
}
|