mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 16:57:16 -05:00
21 lines
454 B
C#
21 lines
454 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using OpenDiablo2.Common.Enums;
|
|||
|
using OpenDiablo2.Common.Models;
|
|||
|
|
|||
|
namespace OpenDiablo2.Common.Interfaces
|
|||
|
{
|
|||
|
public interface IGameState
|
|||
|
{
|
|||
|
MPQDS1 MapData { get; }
|
|||
|
int Act { get; }
|
|||
|
string MapName { get; }
|
|||
|
Palette CurrentPalette { get; }
|
|||
|
|
|||
|
void Initialize(string text, eHero value);
|
|||
|
}
|
|||
|
}
|