10 lines
181 B
C#
10 lines
181 B
C#
using System.Collections.Generic;
|
|
namespace BF
|
|
{
|
|
public class BattlePetData
|
|
{
|
|
public bool IsInit = false;
|
|
public string Res = string.Empty;
|
|
public int Follow = 0;
|
|
}
|
|
} |