PSO2SERVER/Server/Models/PSOData.cs

30 lines
624 B
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-09-10 01:13:20 +08:00
namespace PSO2SERVER.Models
2024-09-10 00:31:40 +08:00
{
public enum EntityType : UInt16
{
2024-09-17 02:16:10 +08:00
Player = 0x04,
Map = 0x05,
Object = 0x06
2024-09-10 00:31:40 +08:00
}
public struct ObjectHeader
{
public UInt32 ID;
public UInt32 padding; // Always is padding
public EntityType EntityType; // Maybe...
public UInt16 Unknown_A;
public ObjectHeader(uint id, EntityType type) : this()
{
this.ID = id;
this.EntityType = type;
}
}
}