LanguagePluginOther.cs 279 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace SC.XR.Unity.Module_DetectorSystem
  5. {
  6. public class LanguagePluginOther : LanguagePlugin
  7. {
  8. public static LanguagePluginOther Create()
  9. {
  10. return new LanguagePluginOther();
  11. }
  12. }
  13. }