mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 10:07:15 +02:00
* Delete Matrix3. Replace with System.Numerics.Matrix3x2 * Feedback * release notes
13 lines
285 B
C#
13 lines
285 B
C#
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Utility
|
|
{
|
|
internal static class OpenTKConversions
|
|
{
|
|
public static OpenToolkit.Mathematics.Color4 ConvertOpenTK(this Color color)
|
|
{
|
|
return new(color.R, color.G, color.B, color.A);
|
|
}
|
|
}
|
|
}
|