mirror of
https://github.com/JonasNilson/idle_master_extended.git
synced 2025-05-15 13:53:50 +02:00
# steam-idle rebuilt ## Rebuilt steam-idle.exe - HTTPS - Steamworks.NET 20.2.0 - Form renamed ## Idle Master Extended rebuilt with rebuilt steam-idle + x64 Steamworks
19 lines
417 B
C#
19 lines
417 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace steam_idle
|
|
{
|
|
public partial class FormSteamIdle : Form
|
|
{
|
|
public FormSteamIdle(long appid)
|
|
{
|
|
InitializeComponent();
|
|
picApp.Load($"https://cdn.akamai.steamstatic.com/steam/apps/{appid}/header_292x136.jpg");
|
|
}
|
|
|
|
private void FormSteamIdle_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|