示例#1
0
        public SquadMacroController() : base()
        {
            lmb = new RecoilCompensatorMouseRunner();
            AddAttributeToProperty(lmb, "Signal", new BrowsableAttribute(false));
            AddAttributeToProperty(lmb, "Thread", new BrowsableAttribute(false));
            AddAttributeToProperty(lmb, "ThreadStart", new BrowsableAttribute(false));

            textspeaker = new TextSpeaker();
        }
示例#2
0
        public static string ConvertToString(RecoilCompensatorMouseRunner v)
        {
            var strMethod = "No Action";

            switch (v.Action)
            {
            case null:
                break;

            default:
                strMethod = v.Action.Method.Name;
                break;
            }
            return($"{strMethod}");
        }