mirror of
https://github.com/KingKDot/PowerCrypt
synced 2026-06-06 16:04:30 +00:00
18 lines
346 B
C#
18 lines
346 B
C#
namespace PowerCrypt.Obfuscator.Methods.Counters
|
|
{
|
|
public static class Counter
|
|
{
|
|
private static int _transformations = 0;
|
|
|
|
public static void Increment()
|
|
{
|
|
_transformations++;
|
|
}
|
|
|
|
public static int GetTransformations()
|
|
{
|
|
return _transformations;
|
|
}
|
|
}
|
|
}
|