Artemis.Engine.ArtemisEngine.Run C# (CSharp) Method

Run() private method

private Run ( ) : void
return void
        private void Run()
        {
            using (gameKernel)
            {
                gameKernel.Run();
            }
        }

Usage Example

 internal static void Setup(GameProperties properties, Action initializer)
 {
     if (SetupCalled)
     {
         throw new EngineSetupException("Engine.Setup called multiple times.");
     }
     Instance = new ArtemisEngine(properties, initializer);
     Instance.Run();
 }
All Usage Examples Of Artemis.Engine.ArtemisEngine::Run