Advertisement
Guest User

Untitled

a guest
Oct 7th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1.  
  2. from bs.system.System_GLUT import System_GLUT()
  3.  
  4. g_system = None
  5.  
  6. def init():
  7.     if(g_system==None):
  8.         g_system = System_GLUT()
  9.  
  10. def quit():
  11.     if(g_system!=None):
  12.         del g_system
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement