mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
26 lines
575 B
C#
26 lines
575 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using FSO.Content;
|
|
|
|
namespace FSO.Debug
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
//Content.Content.Init(@"C:\Program Files\Maxis\The Sims Online\TSOClient\", null);
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
//new Vitaboy().Show();
|
|
}
|
|
}
|
|
}
|