mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
12 lines
227 B
C#
12 lines
227 B
C#
|
namespace Rainmeter
|
||
|
{
|
||
|
public class Version
|
||
|
{
|
||
|
#if X64
|
||
|
public const string Informational = "2.3.0.1091 (64-bit)";
|
||
|
#else
|
||
|
public const string Informational = "2.3.0.1091 (32-bit)";
|
||
|
#endif
|
||
|
}
|
||
|
}
|