mirror of
https://github.com/BlackMATov/unity-flash-tools.git
synced 2026-01-04 15:36:54 +07:00
15 lines
291 B
C#
15 lines
291 B
C#
namespace FTRuntime {
|
|
public static class SwfVersion {
|
|
public const int Major = 1;
|
|
public const int Minor = 3;
|
|
public const int Revision = 8;
|
|
|
|
public static string AsString {
|
|
get {
|
|
return string.Format(
|
|
"{0}.{1}.{2}",
|
|
Major, Minor, Revision);
|
|
}
|
|
}
|
|
}
|
|
} |