mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-02 14:52:38 +00:00
17 lines
296 B
C#
17 lines
296 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Drawing.Imaging;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.GUI.Config
|
|
{
|
|
public class PlayerProfile
|
|
{
|
|
public string PlayerName = "NewPlayer";
|
|
}
|
|
}
|