mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-22 00:17:27 -05:00
Updates the Field Item Editor to render layers based on the entire map, and the per-patch positioning of each layer. Import/export will gracefully handle upgrade/downgrade, and viewport import/export will gracefully update tiles rather than a per-acre basis. Performance has also been slightly improved; no allocation is done anymore when updating the image.
13 lines
344 B
C#
13 lines
344 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NHSE.Core;
|
|
|
|
public interface IPlayerRoom
|
|
{
|
|
/// <summary> Returns the inner data buffer of the object, flushing any pending changes. </summary>
|
|
byte[] Write();
|
|
|
|
string Extension { get; }
|
|
LayerRoomItem[] GetItemLayers();
|
|
void SetItemLayers(IReadOnlyList<LayerRoomItem> value);
|
|
} |