7 lines
200 B
Python
7 lines
200 B
Python
import os
|
|
os.environ["PYGAME_HIDE_SUPPORT_PROMPT"] = "True"
|
|
from .main import *
|
|
from . import basic_elements as elements
|
|
|
|
version = '0.2.0'
|
|
print(f"Powered by Vector Graphic Layer, version {version}") |