WitSettings.cs 565 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. #if UNITY_EDITOR
  9. using System;
  10. namespace Meta.WitAi
  11. {
  12. // Wit Settings
  13. [Serializable]
  14. public struct WitSettings
  15. {
  16. public WitConfigSettings[] configSettings;
  17. }
  18. // Wit Config Settings
  19. [Serializable]
  20. public struct WitConfigSettings
  21. {
  22. public string appID;
  23. public string serverToken;
  24. }
  25. }
  26. #endif