mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 14:11:04 -05:00
43 lines
1.5 KiB
C#
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; }
|
|
}
|
|
|
|
}
|