6 lines
132 B
Python
6 lines
132 B
Python
from Lights.Lights import Light
|
|
from OpenGL.GL import *
|
|
from MatrixStuff.Transformations import *
|
|
|
|
class Spotlight(Light):
|
|
pass
|