mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 02:58:02 +02:00
24 lines
280 B
Beef
24 lines
280 B
Beef
![]() |
#pragma warning disable 168
|
||
|
|
||
|
namespace IDETest
|
||
|
{
|
||
|
class HotSwap_LocateSym01
|
||
|
{
|
||
|
static float UseMod()
|
||
|
{
|
||
|
float f = 100.0f;
|
||
|
/*UseMod_Mod
|
||
|
f = f % 31.0f;
|
||
|
*/
|
||
|
return f;
|
||
|
}
|
||
|
|
||
|
public static void Test()
|
||
|
{
|
||
|
int a = 0;
|
||
|
//Test_Start
|
||
|
float f = UseMod();
|
||
|
}
|
||
|
}
|
||
|
}
|