📄 rand.hhf
字号:
#if( ! @defined( random_hhf ))?random_hhf := true;namespace rand; @fast; procedure randomize; @external( "RAND_RANDOMIZE" ); procedure uniform; @returns( "eax" ); @external( "RAND_UNIFORM" ); procedure random; @returns( "eax" ); @external( "RAND_RANDOM" ); procedure range( startRange:dword; endRange:dword ); @returns( "eax" ); @external( "RAND_RANGE" ); procedure urange( startRange:dword; endRange:dword ); @returns( "eax" ); @external( "RAND_URANGE" ); iterator deal( count:dword ); @external( "RAND_DEAL" );end rand;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -