mirror of
https://github.com/Relintai/pmlpp_sample.git
synced 2025-01-08 15:09:40 +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()
|