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
+11
View File
@@ -0,0 +1,11 @@
using mROA.Abstract;
using mROA.Implementation.Attributes;
namespace mROA.Benchmark
{
[SharedObjectInterface]
public interface IPage : IShared
{
byte[] GetData();
}
}