Update shapes_lines_bezier.py

This commit is contained in:
Dor Shapira 2022-09-21 18:00:23 +03:00 committed by GitHub
parent c0b36508dc
commit 9f11c90e29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,7 @@ from raylib.colors import (
# ------------------------------------------------------------------------------------
def main():
# Initialization
# ------------------------------------------------------------------------------------
screenWidth = 800
screenHeight = 450
@ -55,5 +56,6 @@ def main():
close_window() # Close window and OpenGL context
# ----------------------------------------------------------------------------------
# execute the main function
if __name__ == '__main__':
main()