8 lines
264 B
C#
8 lines
264 B
C#
namespace Craftimizer.Simulator.Actions;
|
|
|
|
internal sealed class FocusedTouchCombo : BaseComboAction<Observe, FocusedTouch>
|
|
{
|
|
public override ActionType ActionTypeA => ActionType.Observe;
|
|
public override ActionType ActionTypeB => ActionType.FocusedTouch;
|
|
}
|