mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
29 lines
538 B
C#
29 lines
538 B
C#
using UnityEngine;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public class PlayerUITempSaveData
|
|
{
|
|
public int lastSelectedAvatarID;
|
|
|
|
public Vector2 avatarOverviewPageScrollerPos;
|
|
|
|
public bool hasLandedMainPage;
|
|
|
|
public bool hasSendVerifyEmailApply;
|
|
|
|
public bool hasShowAvatarTurnAroundAnim;
|
|
|
|
public bool hasShowedStartUpDialogs;
|
|
|
|
public PlayerUITempSaveData()
|
|
{
|
|
lastSelectedAvatarID = 0;
|
|
hasLandedMainPage = false;
|
|
hasSendVerifyEmailApply = false;
|
|
hasShowAvatarTurnAroundAnim = false;
|
|
hasShowedStartUpDialogs = false;
|
|
}
|
|
}
|
|
}
|