blob: 9796524fd820b8d8b3ce793b58ffe9d33d17d530 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PortEngine
{
class CrashAPI
{
public static void ResetAPI ()
{
Properties.Settings.Default.userBalance = 0;
//Properties.Settings.Default.userSecurityLevel = 1;
// Properties.Settings.Default.userPowerLevel = 1;
Properties.Settings.Default.userDisplayName = "Player";
}
}
}
|