no more windows??

This commit is contained in:
lewd-alt
2025-05-07 10:45:18 -07:00
parent eecd2a0399
commit 9d89d2cb6a
933 changed files with 408908 additions and 407973 deletions

View File

@@ -1,17 +1,18 @@
namespace _2DGAMELIB;
public class ConstProp
namespace _2DGAMELIB
{
private int c = -1;
public class ConstProp
{
private int c = -1;
public bool GetFlag(double Proportion)
{
c++;
return c % (int)(1.0 / Proportion) == 0;
}
public bool GetFlag(double Proportion)
{
c++;
return c % (int)(1.0 / Proportion) == 0;
}
public void Reset()
{
c = -1;
}
public void Reset()
{
c = -1;
}
}
}