You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
362 B
C#

4 years ago
using System;
using System.Collections;
using Game;
// Token: 0x020000F3 RID: 243
public class PaymentTask : SubPartTask
{
// Token: 0x06000687 RID: 1671 RVA: 0x0001B07C File Offset: 0x0001927C
public IEnumerator Open(CHAR_ID charaId)
{
UIValue.GalleryCharactor = (int)charaId;
yield return base.Open(UIValue.SCENE_PAYMENT, true);
yield break;
}
}