Files
alternativa3d-archive/Alternativa3D5/5.0.0/alternativa/engine3d/.svn/text-base/Alternativa3DVersion.as.svn-base
2024-10-05 12:11:16 +01:00

26 lines
772 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package alternativa.engine3d {
/**
* Класс содержит информацию о версии библиотеки Alternativa3D
*/
public class Alternativa3DVersion {
/**
* Основная версия библиотеки
*/
public static const MAJOR_VERSION:uint = 0;
/**
* Промежуточная версия библиотеки
*/
public static const MINOR_VERSION:uint = 0;
/**
* Строковое представление версии библиотеки
*/
public static const VERSION:String = "5." + MAJOR_VERSION + "." + MINOR_VERSION;
/**
* Полное описание версии
*/
public static const FULL_VERSION:String = "Alternativa3D " + VERSION;
}
}