File size: 205 Bytes
8194362
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import Simulation from './Simulation'
import Ui from './Ui'
import { isWebGlSupported } from './utils'

if (!isWebGlSupported()) {
  Ui.showWebGLError()
}
else {
  Simulation.init()
  Simulation.start()
}