mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-18 10:26:02 -05:00
18 lines
282 B
C#
18 lines
282 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenDiablo2.Common.Enums
|
|
{
|
|
public enum eRenderCellType
|
|
{
|
|
Floor,
|
|
WallUpper,
|
|
WallLower,
|
|
Roof,
|
|
MAX
|
|
}
|
|
}
|