Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Item item = new Item("name", "descrp", '◆', 1, 1);

            Load.AddSerializeJsonGameObject <Item>(item);

            List <Item> test = Load.GetConfigFromFile <Item>();

            foreach (var temp in test)
            {
                Console.WriteLine();
            }
        }