mirror of
https://github.com/alee14-projects/Project-Silicon.git
synced 2025-01-23 16:32:52 -05:00
19 lines
392 B
C#
19 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace PortEngine
|
|
{
|
|
public class GeneralAPI
|
|
{
|
|
|
|
public static void setNameOnAppLauncher(Label txtUserDestination)
|
|
{
|
|
txtUserDestination.Text = Properties.Settings.Default.userDisplayName;
|
|
}
|
|
|
|
}
|
|
}
|