mirror of
https://github.com/Relintai/pmlpp_sample.git
synced 2024-12-21 13:47:52 +01:00
14 lines
230 B
GDScript
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()
|