mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-08 11:17:19 -05:00
10 lines
141 B
C#
10 lines
141 B
C#
|
using System;
|
|||
|
|
|||
|
namespace OpenDiablo2.Common.Interfaces
|
|||
|
{
|
|||
|
public interface IGameEngine : IDisposable
|
|||
|
{
|
|||
|
void Run();
|
|||
|
}
|
|||
|
}
|