max
30deeca452
added the moonworks ecs library. testing it by setting up a transform and parent system.
6 lines
144 B
C#
6 lines
144 B
C#
using System.Numerics;
|
|
|
|
namespace Nerfed.Runtime.Components
|
|
{
|
|
public readonly record struct LocalToWorld(Matrix4x4 localToWorldMatrix);
|
|
} |