mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-07 10:14:37 -05:00
rewritten core side to include tons more metadata/structure need to rewrite renderer to output full map image rather than skipping sea
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);
|
|
} |