DS-Pokemon-Rom-Editor/DS_Map/FlyEditor/Data/FlyTableRowHgss.cs
2025-06-10 12:44:21 +02:00

43 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DSPRE.Editors.Data
{
public class FlyTableRowHgss
{
public FlyTableRowHgss() { }
public FlyTableRowHgss(ushort headerIdGameOver, byte localX, byte localY, ushort headerIdFly, ushort globalX, ushort globalY,
ushort headerIdUnlockWarp, ushort globalXUnlock, ushort globalYUnlock, byte unlockId, byte warpCondition)
{
HeaderIdGameOver = headerIdGameOver;
LocalX = localX;
LocalY = localY;
HeaderIdFly = headerIdFly;
GlobalX = globalX;
GlobalY = globalY;
HeaderIdUnlockWarp = headerIdUnlockWarp;
GlobalXUnlock = globalXUnlock;
GlobalYUnlock = globalYUnlock;
UnlockId = unlockId;
WarpCondition = warpCondition;
}
public ushort GlobalX { get; set; }
public ushort GlobalXUnlock { get; set; }
public ushort GlobalY { get; set; }
public ushort GlobalYUnlock { get; set; }
public ushort HeaderIdFly { get; set; }
public ushort HeaderIdGameOver { get; set; }
public ushort HeaderIdUnlockWarp { get; set; }
public byte LocalX { get; set; }
public byte LocalY { get; set; }
public byte UnlockId { get; set; }
public byte WarpCondition { get; set; }
}
}