Subversion Repositories group.electronics

Rev

Rev 162 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WindowsInput;

namespace nitdcscore {
    public class Globals {
        public static DcsBios bios { get; set; }
        public static void DcsBiosInit() {
            Globals.bios = new DcsBios();
            bios.InitUDP();
        }

        //public static InputSimulator SendKey = new InputSimulator();
    }
}