mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-01 00:23:17 +02:00
Added a load player character function to the database class. As I went through, changed the various properties to their correct datatype. Also added Work object to Character.
This commit is contained in:
parent
c9f35a207b
commit
4dec77aa69
8 changed files with 353 additions and 16 deletions
15
FFXIVClassic Map Server/actors/chara/Work.cs
Normal file
15
FFXIVClassic Map Server/actors/chara/Work.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FFXIVClassic_Map_Server.actors.chara
|
||||
{
|
||||
class Work
|
||||
{
|
||||
public bool[] guildleveDone = new bool[16];
|
||||
public bool[] guildleveChecked = new bool[16];
|
||||
public bool betacheck = false;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue