This commit is contained in:
2021-09-03 03:07:58 +01:00
parent a92bee32e1
commit 71de903f13
5 changed files with 99 additions and 1 deletions

11
test/isn.tests/IRing.cs Normal file
View File

@ -0,0 +1,11 @@
namespace isn.tests
{
internal interface IRing : IBody
{
IRing Add(IRing other);
IRing Mult<TBody>(TBody v);
}
}