blob: 977edf0b37a4893ceee05af49e74d8e380f0f5ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using KKSG;
namespace XMainClient
{
public class PupilTargetItemInfo
{
public RoleBriefInfo roleInfo;
public bool isApplied = false;
public string applyWords = string.Empty;
}
}
|