1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-01 05:45:59 +02:00
Beef/BeefLibs/corlib/src/Void.bf

15 lines
194 B
Beef

namespace System
{
struct Void : void, IHashable
{
public override void ToString(String strBuffer)
{
strBuffer.Append("void");
}
public int GetHashCode()
{
return 0;
}
}
}