PackPlatformH5.cs 357 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using UnityEditor;
  7. namespace Pack
  8. {
  9. [Serializable]
  10. public partial class PackPlatformH5 : PackPlatformUnity
  11. {
  12. public override BuildTarget GetBuildTarget()
  13. {
  14. return BuildTarget.WebGL;
  15. }
  16. }
  17. }