Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var client   = new GeckoClient("", "", "");
            var products = client.Products.List();

            Console.ReadLine();
        }
Exemplo n.º 2
0
 public int GetAddress(GeckoClient client)
 {
     if (!IsPhysics)
     {
         return(Address);
     }
     return(Address);
 }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            Console.Write("Wii U's IPv4> ");
            string wiiuIp = Console.ReadLine();

            Console.WriteLine("Connecting TCPGecko server...");
            TcpGeckoConnector connector = new TcpGeckoConnector();

            connector.Connect(wiiuIp);
            Console.Write("Connected!");

            Console.Write("Sending codes...");
            GeckoClient client = new GeckoClient(connector);

            //client.CodeHandler.SendCodes()
            //new CCWriteMemory(0x1004F71C, 0, ValueSize.UInt8) //Home Button Menu Anywhere [Macopride64])
            client.Connector.Disconnect();
            Console.WriteLine("Sent!");
            Console.WriteLine("You can use the Home Menu in anywhere.");

            Console.ReadKey(false);
        }