mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
28 lines
456 B
C#
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;
|
|
}
|
|
}
|
|
}
|