PlatformAccountConfig.cs 295 B

123456789101112
  1. using UnityEngine;
  2. namespace SC.XR.Unity.Module_PlatformAccount
  3. {
  4. [CreateAssetMenu(menuName = "SCConfig/PlatformAccountConfig")]
  5. [SerializeField]
  6. public class PlatformAccountConfig : ScriptableObject
  7. {
  8. public Module_PlatformAccount module_PlatformAccount;
  9. }
  10. }