mirror of
https://github.com/Relintai/pmlpp_sample.git
synced 2025-01-02 14:39:37 +01:00
14 lines
251 B
GDScript
14 lines
251 B
GDScript
extends Node
|
|
|
|
var mlpp_martix_tests : MLPPMatrixTests = null
|
|
|
|
func _ready() -> void:
|
|
mlpp_martix_tests = MLPPMatrixTests.new()
|
|
|
|
mlpp_martix_tests.run_tests()
|
|
|
|
#mlpp_tests.test_mlpp_matrix()
|
|
#mlpp_tests.test_mlpp_matrix_mul()
|
|
|
|
get_tree().quit()
|