Changing references

This commit is contained in:
2025-08-16 18:30:05 +03:00
parent 24d346795d
commit 46d741a287
7 changed files with 101 additions and 10 deletions
+15
View File
@@ -0,0 +1,15 @@
using mROA.Abstract;
using mROA.Implementation.Attributes;
namespace mROA.Benchmark
{
[SharedObjectInterface]
public interface ILoadTest : IShared
{
Task<int> Next(int last);
int Last(int next);
void C();
void A();
Task AsyncTest(CancellationToken token = default);
}
}