mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
16 lines
306 B
C#
16 lines
306 B
C#
using System.Numerics;
|
|
|
|
namespace ACE.Entity
|
|
{
|
|
public class Frame
|
|
{
|
|
public Vector3 Origin { get; set; }
|
|
public Quaternion Orientation { get; set; }
|
|
|
|
public Frame()
|
|
{
|
|
Origin = Vector3.Zero;
|
|
Orientation = Quaternion.Identity;
|
|
}
|
|
}
|
|
}
|