mirror of
https://github.com/BlackMATov/unity-flash-tools.git
synced 2025-12-16 22:19:31 +07:00
16 lines
293 B
C#
16 lines
293 B
C#
namespace FTRuntime {
|
|
public static class SwfVersion {
|
|
public const int Major = 1;
|
|
public const int Minor = 3;
|
|
public const int Revision = 11;
|
|
|
|
public static string AsString {
|
|
get {
|
|
return string.Format(
|
|
"{0}.{1}.{2}",
|
|
Major, Minor, Revision);
|
|
}
|
|
}
|
|
}
|
|
}
|