GamePrefs.SetUser C# (CSharp) Method

SetUser() public static method

Cache the name of the most recent user
public static SetUser ( string name ) : void
name string /// A ///
return void
	public static void SetUser(string name)
	{
		PlayerPrefs.SetString(m_userNamePrefKey, name);
	}