コード例 #1
0
 public EntityMessageProcessor(IHost host, IEntityCollection collection)
 {
     _msgd = host.ServiceManager.GetProvider<MsgDes>();
     _collection=collection;
 }
コード例 #2
0
ファイル: EntityMessage.cs プロジェクト: devast8a/FlyingTuna
 public EntityMessage(IHost host, int entity, Message message)
 {
     _serializer = host.ServiceManager.GetProvider<MsgDes>();
     Entity = entity;
     Message = message;
 }