private void Awake()
        {
            if (Instance != null)
            {
                Debug.LogWarning("Multiple instances of StreamedAssetText exist!");
            }

            Instance = this;
        }
 public static void Load(string _databaseFilePath)
 {
     StreamedAssetText.Read(_databaseFilePath, LoadFromBuffer);
 }