interstellar / src /main.js
Pim Schreurs
Modernize the whole codebase; improve rendering
8194362
import Simulation from './Simulation'
import Ui from './Ui'
import { isWebGlSupported } from './utils'
if (!isWebGlSupported()) {
Ui.showWebGLError()
}
else {
Simulation.init()
Simulation.start()
}