You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ongeki_ChibiViewer/Assets/FX/FX_Animation_Event_Number.cs

19 lines
363 B

using System;
using UnityEngine;
namespace FX
{
// Token: 0x02000776 RID: 1910
public class FX_Animation_Event_Number : MonoBehaviour
{
// Token: 0x06003082 RID: 12418 RVA: 0x001050C4 File Offset: 0x001050C4
public void Event_Number(int theValue)
{
this._evtNumber = theValue;
}
// Token: 0x040056FE RID: 22270
private int _evtNumber;
}
}