Não deve ser um problema, embora o jogo possa rodar (ou iniciar) um pouco mais devagar.
O Serviço de Otimização de Tempo de Execução do .NET é parte do Gerador de Imagens Nativo do .NET . É suposto compilar o .NET CLI para uma imagem binária específica do computador.
The Native Image Generator (Ngen.exe) is a tool that improves the performance of managed applications. Ngen.exe creates native images, which are files containing compiled processor-specific machine code, and installs them into the native image cache on the local computer. The runtime can use native images from the cache instead of using the just-in-time (JIT) compiler to compile the original assembly.
Quando a imagem nativa é incompatível ou não está disponível, a estrutura .NET deve retornar à compilação JIT. Então, ele ainda deve funcionar e pode ser um pouco mais lento, embora possa não afetá-lo. Não sei exatamente por que o Native Image Generator precisa de acesso à Internet, no entanto.
The native image service is a Windows service that generates and maintains native images. The native image service allows the developer to defer the installation and update of native images to periods when the computer is idle.
On Windows Vista, the name displayed for the native image service is "Microsoft.NET Framework NGEN v2.0.50727_X86" or "Microsoft.NET Framework NGEN v2.0.50727_X64". On all earlier versions of Microsoft Windows, the name is ".NET Runtime Optimization Service v2.0.50727_X86" or ".NET Runtime Optimization Service v2.0.50727_X64".