15 lines
235 B
C#
15 lines
235 B
C#
using mROA.Implementation.Attributes;
|
|
|
|
namespace Example.Shared
|
|
{
|
|
[SharedObjectInterface]
|
|
public interface ILoadTest
|
|
{
|
|
int Next(int last);
|
|
int Last(int next);
|
|
void C();
|
|
void A();
|
|
}
|
|
}
|
|
|