mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
18 lines
341 B
C#
18 lines
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System_Plugs.System
|
|
{
|
|
[Plug(typeof(HashCode))]
|
|
class HashCodeImpl
|
|
{
|
|
public static uint GenerateGlobalSeed()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|