Files
JJBB/Assets/Project/Script/LuaScripts/UI/MarketingActCommon.cs

13 lines
180 B
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
using UnityEngine;
using System.Collections;
public class MarketingActCommon
{
public static string GetActName(int actID)
{
return actID.ToString();
}
}