An error occurred while loading the file. Please try again.
-
SATTLER EMMA authored1a89fe3a
Forked from
S4 / Les Spice Girls / Wanderer
138 commits behind the upstream repository.
FormJeu.cs 892 B
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Wanderer.view
{
public partial class FormJeu : Form
{
public FormJeu()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
FormAide formAide = new FormAide();
formAide.Show();
}
private void btnUsine_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
private void btnRefuge_Click(object sender, EventArgs e)
{
}
private void mapView1_Paint(object sender, PaintEventArgs e)
{
}
}
}