mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-08 10:44:16 -05:00
16 lines
426 B
C#
16 lines
426 B
C#
using System;
|
|
|
|
namespace NHSE.Core;
|
|
|
|
public interface IPlayerHouse : IHouseInfo
|
|
{
|
|
/// <summary> Returns the inner data buffer of the object, flushing any pending changes. </summary>
|
|
byte[] Write();
|
|
|
|
sbyte NPC1 { get; set; }
|
|
sbyte NPC2 { get; set; }
|
|
string Extension { get; }
|
|
Span<short> EventFlags { get; }
|
|
IPlayerRoom GetRoom(int roomIndex);
|
|
void SetRoom(int roomIndex, IPlayerRoom room);
|
|
} |