mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-08 18:55:33 -05:00
17 lines
494 B
C#
17 lines
494 B
C#
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; }
|
|
short[] GetEventFlags();
|
|
void SetEventFlags(short[] value);
|
|
IPlayerRoom GetRoom(int roomIndex);
|
|
void SetRoom(int roomIndex, IPlayerRoom room);
|
|
}
|
|
}
|