框架上传

This commit is contained in:
2025-03-31 11:16:52 +08:00
parent 7197b4c0d0
commit ffcdddbd2a
429 changed files with 19115 additions and 1579 deletions

View File

@@ -0,0 +1,24 @@
using System;
using UnityEngine;
namespace Stary.Evo
{
[CreateAssetMenu(fileName = "HotfixMainResDomain", menuName = "Evo/Create HotfixMainResDomain")]
public class HotfixMainResDomain : ScriptableObject
{
public HotfixMainResDomainEntity hotfixMainResDomainEntity;
}
[Serializable]
public class HotfixMainResDomainEntity
{
public string domain;
public string ipconfig="http://192.168.31.100:5005/HotRefresh";
public string pathconfig;
public string packageVersion;
public string username="UnityHot";
public string password="Unity1234";
}
}