mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* ACE.DatLoader: XpTable updated * ACE.DatLoader physics and environment using new unpack pattern
19 lines
409 B
C#
19 lines
409 B
C#
using System.IO;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
/// <summary>
|
|
/// Info on texture UV mapping
|
|
/// </summary>
|
|
public class Vec2Duv : IUnpackable
|
|
{
|
|
public float U { get; private set; }
|
|
public float V { get; private set; }
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
U = reader.ReadSingle();
|
|
V = reader.ReadSingle();
|
|
}
|
|
}
|
|
}
|