Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/PlayerStastics.cs
2025-08-13 09:26:42 +08:00

28 lines
456 B
C#

namespace MoleMole
{
public class PlayerStastics
{
public SafeInt32 screenRotateTimes = 0;
public SafeFloat stageTime = 0f;
public PlayerStastics()
{
screenRotateTimes = 0;
stageTime = 0f;
}
public PlayerStastics(float levelTime, int screenRotateTimes)
{
stageTime = levelTime;
this.screenRotateTimes = screenRotateTimes;
}
public void ResetPlayerStasticsData()
{
screenRotateTimes = 0;
stageTime = 0f;
}
}
}