diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Server/Net/GameCodeFactory.cs')
-rw-r--r-- | Impostor-dev/src/Impostor.Server/Net/GameCodeFactory.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Server/Net/GameCodeFactory.cs b/Impostor-dev/src/Impostor.Server/Net/GameCodeFactory.cs new file mode 100644 index 0000000..2a0553f --- /dev/null +++ b/Impostor-dev/src/Impostor.Server/Net/GameCodeFactory.cs @@ -0,0 +1,12 @@ +using Impostor.Api.Games; + +namespace Impostor.Server.Net +{ + public class GameCodeFactory : IGameCodeFactory + { + public GameCode Create() + { + return GameCode.Create(); + } + } +}
\ No newline at end of file |