mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-01-19 19:14:45 +00:00
15 lines
331 B
C#
15 lines
331 B
C#
// -----------------------------------------------------
|
|
// Number Processing
|
|
// -----------------------------------------------------
|
|
function decimalToPercent(%decimal) //Doesn't work very nicely at the time.. probably won't be used after a bit
|
|
{
|
|
return %decimal * 100;
|
|
}
|
|
|
|
function isDecimal(%num)
|
|
{
|
|
return strStr(%num,".");
|
|
}
|
|
|
|
|