more versions added

This commit is contained in:
Tubix
2024-10-05 12:11:16 +01:00
parent 413f563f33
commit c32c7e8c34
7661 changed files with 1343635 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package alternativa.engine3d.materials {
import alternativa.engine3d.*;
use namespace alternativa3d;
/**
* Базовый класс для материалов.
*/
public class Material {
/**
* Создание клона материала.
*
* @return клон материала
*/
public function clone():Material {
return new Material();
}
}
}