12 lines
231 B
C#
12 lines
231 B
C#
using System;
|
|
using mROA.Implementation;
|
|
using mROA.Implementation.Attributes;
|
|
|
|
namespace Example.Events.Shared
|
|
{
|
|
[SharedObjectInterface]
|
|
public interface IChatFactory : IShared
|
|
{
|
|
IChat GetChat(Guid id);
|
|
}
|
|
} |