Started integrating RANDOM.ORG API for competition rolling.

This commit is contained in:
2025-06-10 16:25:42 -04:00
parent 8c8088c362
commit 75195e2c95
2 changed files with 18 additions and 0 deletions

14
osrs-toolbox/Random.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osrs_toolbox
{
public static class Random
{
private static string BaseEndpoint = @"https://api.randdom.org/json-rpc/4/invoke";
private static string APIKey = APIKeys.RANDOM;
}
}

View File

@@ -85,4 +85,8 @@
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="APIs\Random\" />
</ItemGroup>
</Project>