25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
- #pragma pack(push)
- #pragma pack(1)
- //人工智能通用
- class CAIUtil
- {
- public:
-
- //检查几率
- static bool DetectionProbability(BYTE r)
- {
- if((rand() % 100) < r)
- return true;
- else
- return false;
- }
- };
-
- #pragma pack(pop)
|