pmlpp_sample/game/test/TestMatrix.gd
2023-04-26 22:09:12 +02:00

14 lines
230 B
GDScript

extends Node
var mlpp_tests : MLPPMatrixTests = null
func _ready() -> void:
mlpp_tests = MLPPMatrixTests.new()
mlpp_tests.run_tests()
#mlpp_tests.test_mlpp_matrix()
#mlpp_tests.test_mlpp_matrix_mul()
get_tree().quit()