mirror of
https://gitea.tendokyu.moe/Kayori/Medusa.net.git
synced 2026-09-27 09:23:27 +03:00
12 lines
200 B
C#
12 lines
200 B
C#
using Abstractions.SerializationTypes;
|
|
|
|
namespace Abstractions.Utils;
|
|
|
|
public static class XrpcIntExtensions
|
|
{
|
|
public static bool ToBool(this XrpcInt self)
|
|
{
|
|
return self != 0;
|
|
}
|
|
}
|