-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathProgram.cs
41 lines (36 loc) · 1.37 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using Bot_Dofus_1._29._1.Comun.Frames.Transporte;
using Bot_Dofus_1._29._1.Forms;
using Bot_Dofus_1._29._1.Otros.Mapas.Interactivo;
using Bot_Dofus_1._29._1.Utilidades.Configuracion;
using System;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml.Linq;
/*
Este archivo es parte del proyecto BotDofus_1.29.1
BotDofus_1.29.1 Copyright (C) 2019 Alvaro Prendes — Todos los derechos reservados.
Creado por Alvaro Prendes
web: http://www.salesprendes.com
*/
namespace Bot_Dofus_1._29._1
{
static class Program
{
public static PaqueteRecibido paquete_recibido;
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Task.Run(() =>
{
GlobalConf.cargar_Todas_Cuentas();
XElement.Parse(Properties.Resources.interactivos).Descendants("SKILL").ToList().ForEach(i => new ObjetoInteractivoModelo(i.Element("nombre").Value, i.Element("gfx").Value, bool.Parse(i.Element("caminable").Value), i.Element("habilidades").Value, bool.Parse(i.Element("recolectable").Value)));
paquete_recibido = new PaqueteRecibido();
paquete_recibido.Inicializar();
});
Application.Run(new Principal());
}
}
}