Esempio n. 1
0
        public static void Sell(Hangar Plugin, CommandContext Context, string GridNameOrNumber, string Price, string Description)
        {
            HangarChecks Checks = new HangarChecks(Context, Plugin);
            Task         T      = new Task(() => Checks.SellGrid(GridNameOrNumber, Price, Description));

            T.Start();
        }
Esempio n. 2
0
        public void GridSell(string GridNameOrNumber, string Price, string Description)
        {
            HangarChecks Checks = new HangarChecks(Context, Plugin);

            Checks.SellGrid(GridNameOrNumber, Price, Description);
        }