mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-22 10:36:06 +02:00
mass replaced all methods to pascal case
This commit is contained in:
parent
ed0a0a58f7
commit
24f55139dd
179 changed files with 1585 additions and 1585 deletions
|
@ -56,7 +56,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
public uint feet;
|
||||
public uint belt;
|
||||
|
||||
public static CharaInfo getFromNewCharRequest(String encoded)
|
||||
public static CharaInfo GetFromNewCharRequest(String encoded)
|
||||
{
|
||||
byte[] data = Convert.FromBase64String(encoded.Replace('-', '+').Replace('_', '/'));
|
||||
|
||||
|
@ -116,7 +116,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
return info;
|
||||
}
|
||||
|
||||
public static String buildForCharaList(Character chara, Appearance appearance)
|
||||
public static String BuildForCharaList(Character chara, Appearance appearance)
|
||||
{
|
||||
byte[] data;
|
||||
|
||||
|
@ -146,7 +146,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
writer.Write(System.Text.Encoding.UTF8.GetBytes(chara.name + '\0'));
|
||||
writer.Write((UInt32)0x1c);
|
||||
writer.Write((UInt32)0x04);
|
||||
writer.Write((UInt32)getTribeModel(chara.tribe));
|
||||
writer.Write((UInt32)GetTribeModel(chara.tribe));
|
||||
writer.Write((UInt32)appearance.size);
|
||||
uint colorVal = appearance.skinColor | (uint)(appearance.hairColor << 10) | (uint)(appearance.eyeColor << 20);
|
||||
writer.Write((UInt32)colorVal);
|
||||
|
@ -223,7 +223,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
return Convert.ToBase64String(data).Replace('+', '-').Replace('/', '_');
|
||||
}
|
||||
|
||||
public static String debug()
|
||||
public static String Debug()
|
||||
{
|
||||
byte[] bytes = File.ReadAllBytes("./packets/charaappearance.bin");
|
||||
|
||||
|
@ -232,7 +232,7 @@ namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
return Convert.ToBase64String(bytes).Replace('+', '-').Replace('/', '_');
|
||||
}
|
||||
|
||||
public static UInt32 getTribeModel(byte tribe)
|
||||
public static UInt32 GetTribeModel(byte tribe)
|
||||
{
|
||||
switch (tribe)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue