Example #1
0
 public Resource(TypeResource types, InternshipResource internships, TierResource tiers, EnchantmentsResource enchantments, int quantityResource)
 {
     Types            = types;
     Internships      = internships;
     Tiers            = tiers;
     Enchantments     = enchantments;
     QuantityResource = quantityResource;
 }
Example #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Type (Ore, Wood, Fiber, Leather, Stone)");
            TypeResource type = Enum.Parse <TypeResource>(Console.ReadLine());

            Console.WriteLine("Estagio da materia (Druto/Refined) :");
            InternshipResource internship = Enum.Parse <InternshipResource>(Console.ReadLine());

            Console.WriteLine("Tier (Tier1/.../Tier8) :");
            TierResource tier = Enum.Parse <TierResource>(Console.ReadLine());

            Console.WriteLine("Enchantments  (1,2 e 3) :");
            EnchantmentsResource enchantments = Enum.Parse <EnchantmentsResource>(Console.ReadLine());

            Console.WriteLine("Quantity:");
            int quantity = int.Parse(Console.ReadLine());

            Resource x = new Resource(type, internship, tier, enchantments, quantity);

            Console.WriteLine(x);
        }