mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
14 lines
193 B
Python
14 lines
193 B
Python
'''
|
|
Created on Feb 23, 2013
|
|
|
|
@author: Rob
|
|
'''
|
|
|
|
class Directive(object):
|
|
'''
|
|
Base type for directives.
|
|
'''
|
|
name = ''
|
|
|
|
def __init__(self,name,args):
|
|
self.name=name |