mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
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);
|
|
}
|
|
}
|
|
}
|