PSO2SERVER/Server/Models/PSOData.cs
2024-09-17 02:16:10 +08:00

30 lines
624 B
C#

using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PSO2SERVER.Models
{
public enum EntityType : UInt16
{
Player = 0x04,
Map = 0x05,
Object = 0x06
}
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;
}
}
}