2016-01-09 23:22:10 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2016-01-20 23:18:10 -05:00
|
|
|
|
namespace FFXIVClassic_Map_Server.Actors.Chara
|
2016-01-09 23:22:10 -05:00
|
|
|
|
{
|
|
|
|
|
class Work
|
|
|
|
|
{
|
2016-01-10 02:44:32 -05:00
|
|
|
|
public ushort[] guildleveId = new ushort[16];
|
2016-01-09 23:22:10 -05:00
|
|
|
|
public bool[] guildleveDone = new bool[16];
|
|
|
|
|
public bool[] guildleveChecked = new bool[16];
|
2016-01-16 11:26:35 -05:00
|
|
|
|
|
2016-01-09 23:22:10 -05:00
|
|
|
|
public bool betacheck = false;
|
2016-01-16 11:26:35 -05:00
|
|
|
|
|
|
|
|
|
public bool[] event_achieve_aetheryte = new bool[512];
|
2016-01-09 23:22:10 -05:00
|
|
|
|
}
|
|
|
|
|
}
|