mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
10 lines
288 B
C#
10 lines
288 B
C#
using Akka.Actor;
|
|
|
|
namespace Phantom.Utils.Actor;
|
|
|
|
public static class ActorExtensions {
|
|
public static ActorRef<TMessage> ActorOf<TMessage>(this IActorRefFactory factory, Props<TMessage> props, string? name) {
|
|
return new ActorRef<TMessage>(factory.ActorOf(props.Inner, name));
|
|
}
|
|
}
|