-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnotherMap.cs
More file actions
34 lines (32 loc) · 1.14 KB
/
AnotherMap.cs
File metadata and controls
34 lines (32 loc) · 1.14 KB
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
namespace Mir4Bot
{
public class AnotherMap : MapBase
{
// Implementação das propriedades abstratas
public override Dictionary<string, SubMapa> SubMapas { get; set; }
public override List<(int x, int y)> BossCoordinates { get; }
public override (int x, int y) TeleportCoordinate { get; }
public AnotherMap()
{
// Inicializa os submapas de outro mapa (exemplo)
SubMapas = new Dictionary<string, SubMapa>
{
{
"Area1", new SubMapa
{
BossCoordinates = new List<(int x, int y)>
{
(100, 200), // Boss 1
(150, 250) // Boss 2
},
TeleportCoordinate = (300, 300),
SubMapaCoordinate = (400, 400) // Coordenada da área 1
}
}
};
// Inicializa as propriedades abstratas
BossCoordinates = new List<(int x, int y)>();
TeleportCoordinate = (0, 0);
}
}
}