コード例 #1
0
ファイル: Form1.cs プロジェクト: jmazzola/KTANEHelper
        private void Form1_Load(object sender, EventArgs e)
        {
            // Set up Speech Recognition and Synthesis
            SetupSpeech();

            // Set up the bomb information
            bombInfo = new GlobalInformation();

            // Set up SimpleWires module
            simpWires = new SimpleWires(ref bombInfo);

            // Set up TheButton module
            button = new TheButton(ref bombInfo);
        }
コード例 #2
0
ファイル: TheButton.cs プロジェクト: jmazzola/KTANEHelper
 public TheButton(ref GlobalInformation i)
 {
     info = i;
 }
コード例 #3
0
ファイル: SimpleWires.cs プロジェクト: jmazzola/KTANEHelper
 public SimpleWires(ref GlobalInformation i)
 {
     info = i;
 }