PSO2SERVER/Server/Models/Mission.cs

39 lines
995 B
C#
Raw Normal View History

2024-09-22 00:08:44 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSO2SERVER.Models
{
public unsafe struct Unk2Struct
{
public fixed uint Unk[0x40]; // Fixed length array equivalent in C#
}
2024-12-11 03:39:12 +08:00
public struct Mission
2024-09-22 00:08:44 +08:00
{
2024-12-11 03:39:12 +08:00
/*5 - main
1 - daily
2 - weekly
7 - tier */
/// Mission type.
2024-09-22 00:08:44 +08:00
public uint MissionType; // Mission type.
public uint StartDate; // Mission start timestamp.
public uint EndDate; // Mission end timestamp.
public uint Id; // Mission ID.
public uint Unk5;
public uint CompletionDate; // Last completion timestamp.
public uint Unk7;
public uint Unk8;
public uint Unk9;
public uint Unk10;
public uint Unk11;
public uint Unk12;
public uint Unk13;
public uint Unk14;
public uint Unk15;
}
}