/// <summary>
        ///     Loads the specified csv file.
        /// </summary>
        public static void Load(string path, int tableIndex)
        {
            if (File.Exists("Assets/" + path))
            {
                string[] lines = File.ReadAllLines("Assets/" + path);

                if (lines.Length > 1)
                {
                    LogicDataTables.LoadTable(new CSVNode(lines, path).GetTable(), tableIndex);
                }
            }
            else
            {
                Debugger.Warning("LogicDataTables::load file " + path + " not exist");
            }
        }