mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-27 12:42:21 -05:00
Move sprite resources to subfolder for organization Add FieldItem class (replaces MapItem), might work in a field item editor (similar to building editor)
17 lines
369 B
C#
17 lines
369 B
C#
namespace NHSE.Core
|
|
{
|
|
public class FieldItemDefinition
|
|
{
|
|
public readonly ushort Index;
|
|
public readonly string Name;
|
|
public readonly FieldItemKind Kind;
|
|
|
|
public FieldItemDefinition(ushort id, string name, FieldItemKind kind)
|
|
{
|
|
Index = id;
|
|
Name = name;
|
|
Kind = kind;
|
|
}
|
|
}
|
|
}
|