13 lines
180 B
C#
13 lines
180 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class MarketingActCommon
|
|
{
|
|
|
|
public static string GetActName(int actID)
|
|
{
|
|
return actID.ToString();
|
|
}
|
|
|
|
}
|