-
Java J2me游戏梦幻炸弹人
Java J2me游戏梦幻炸弹人源码,游戏关卡使用mapwin制作的,由一个java脚本自动生成。这个炸弹人与传统的炸弹人相比,BOSS的能力得到提升,2种大BOSS一个是蜈蚣另一个是蝙蝠,主角就没有创新了就是放置炸弹,游戏中的一些精灵动作是使用自己编写的动画编辑器做成的。
- 2022-04-11 17:36:11下载
- 积分:1
-
hefty almanac source code, the C and QB version, I do not know right wrong
万年历的源码,C++和QB版,不知道对不对-hefty almanac source code, the C and QB version, I do not know right wrong
- 2022-02-15 06:52:29下载
- 积分:1
-
商人过河游戏,游戏规则详见源代码注释部分
商人过河游戏,游戏规则详见源代码注释部分-river businessmen game, the rules of the game see the source code Notes
- 2022-03-03 13:21:11下载
- 积分:1
-
在TC534
基于TC534的数据采集卡设计,格式为word,论文,看清楚下载,或许对你有帮助-The TC534-based data acquisition card design, the format for the word, papers, look at download, and perhaps help you
- 2022-02-28 13:17:12下载
- 积分:1
-
element
无网格伽辽金法中用到的数值积分,此程序,提供多点高斯积分,可任意选择!-element-free Galerkin method used in the numerical integration of this process, provide more Gaussian integral, can be arbitrary choice.
- 2022-07-24 17:43:35下载
- 积分:1
-
Flash旋转的光影效果
Flash旋转的光影效果,一些小星星围成圆形不停旋转,慢慢变小,有点宇宙黑洞的感觉,内含Flash源文件。
- 2022-09-16 20:05:03下载
- 积分:1
-
一种低功率SSB收发信机的设计,从别处看到的,应该有用,分享之...
一种低功率SSB收发信机的设计,从别处看到的,应该有用,分享之-A low-power SSB transceiver design, seen elsewhere, it should be useful to share the
- 2022-03-12 11:00:31下载
- 积分:1
-
带加权的寻路算法演示(DELPHI源码)
关于A*寻路算法的代码在网上有很多,但用DELPHI的比较少,本人花了一天时间找到这个,代码和界面都比较精炼,于是...
带加权的寻路算法演示(DELPHI源码)
关于A*寻路算法的代码在网上有很多,但用DELPHI的比较少,本人花了一天时间找到这个,代码和界面都比较精炼,于是在关键处作了中文注释,但愿对朋友们有用。-with weighted routing algorithm Demo (DELPHI OSS) on the A* algorithm routing code on the Internet which is very , but with the DELPHI relatively small, I spent a whole day to find the time, code and interface are more refined, So the Department made a key Chinese translations, I hope that friends useful.
- 2022-12-25 16:35:04下载
- 积分:1
-
关于ruby的入门例子,直接接压就可以使用了,WINDOWS下使用通过,适合新手观看...
关于ruby的入门例子,直接接压就可以使用了,WINDOWS下使用通过,适合新手观看-on ruby introductory examples directly pressure can use it, through the use of Windows, suitable for newcomers to watch
- 2023-09-06 22:20:03下载
- 积分:1
-
VC++转换COLORREF值为RGB分量
VC++转换COLORREF值为RGB分量,举个例子,在本例中,是将COLORREF值:0x000080FF转换成:R分量:0xFF、G分量:0x80、B分量:0x00,注意,并不是分离。请看定义:
//R分量
BYTE RED = GetRValue(cr);
//G分量
BYTE GREEN = GetGValue(cr);
//B分量
BYTE BLUE = GetBValue(cr);
CString strText = _T("");
strText.Format(_T("COLORREF值:0x%08X"), cr);
pDC->TextOut(100, 50, strText);
strText.Format(_T("R分量:0x%02X"), RED);
pDC->TextOut(100, 100, strText);
strText.Format(_T("G分量:0x%02X"), GREEN);
pDC->TextOut(100, 150, strText);
strText.Format(_T("B分量:0x%02X"), BLUE);
pDC->TextOut(100, 200, strText);
- 2022-06-13 02:13:45下载
- 积分:1