mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
16 lines
335 B
C#
16 lines
335 B
C#
using System;
|
|
using Cosmos.Common;
|
|
using IL2CPU.API;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System_Plugs.System
|
|
{
|
|
[Plug(Target = typeof(float))]
|
|
public static class SingleImpl
|
|
{
|
|
public static string ToString(ref float aThis)
|
|
{
|
|
return StringHelper.GetNumberString(aThis);
|
|
}
|
|
}
|
|
}
|