Files
BITFALL/Assets/BITKit/Core/Mathematics/MathO.cs
CortexCore 922271e96d Revert "1"
This reverts commit 0b66b0a19e.
2025-01-20 23:39:36 +08:00

9 lines
152 B
C#

using System;
namespace BITKit
{
public static class MathO
{
public static T As<T>(this object self) where T : class => self as T;
}
}