-
supermario
这是一个模仿任天堂经典游戏《超级玛丽》的克隆游戏。目前支持windows
和linux两种操作系统。你应该已经得到了这个游戏的全部源代码和地图编辑器
的源代码。地图编辑器( MapEdit目录下 )使你可以充分发挥想象力,轻而易举
地创造出游戏中的关卡
(This is a mimic classic Nintendo game " Super Mario" games Cloning. Currently supports two types of windows and linux operating system. You should have been the game all the source code and map the source code editor. Map Editor (MapEdit directory) allows you to give full play to the imagination, easy to create in-game points)
- 2009-02-02 12:30:56下载
- 积分:1
-
ourdev_591812L2P7LR
说明: 51MODBUS从机程序源码希望对有用的人有用,,(51MODBUS,welcom to here,thank you very mouch.)
- 2020-06-21 21:40:01下载
- 积分:1
-
建嵘MP3 源代码
MP3,支持NOR FLASH,nand flash TF作为存储介质
- 2023-03-12 13:20:04下载
- 积分:1
-
o_file
GPS导航文件读取 运用C/C++语言实现了对导航电文的读取(GPS navigation file read)
- 2020-11-11 15:19:45下载
- 积分:1
-
易安卓8266 控制LED灯(demoe4a.e4a)
易安卓8266 控制LED灯(demoe4a.e4a)
- 2021-05-06下载
- 积分:1
-
获取硬盘序列号
获取硬盘序列号的源码,可以用于加密等组件的序列号提取
- 2022-04-26 09:18:27下载
- 积分:1
-
c#Winfrom扁平化控件库
说明: c#的Winform控件库,扁平化,更漂亮,包含90多个控件源码,无第三方控件,全自定义控件。包含控件全部使用Demo(C# WinForm control library, flat, more beautiful, contains more than 90 control source code, no third-party control, full custom control. Include controls all using demo)
- 2020-03-21 15:51:46下载
- 积分:1
-
手把手教你学dsp2812
说明: 手把手教你学2812,很全面的一本书。电子版,适合初学者学习,(Hand to hand teaching you 2812, a very comprehensive book)
- 2020-04-01 20:32:54下载
- 积分:1
-
医院信息科运维登记系统源码
医院运维流程管理,简单的管理功能,可自行修改,感谢分享(Hospital operation and maintenance process management, thanks for sharing.)
- 2021-01-25 10:48:43下载
- 积分:1
-
C# 在程序中使用指针、十字光标、浮动窗口等不安全代码
C# 在程序中使用指针、十字光标、浮动窗口等不安全代码的实例,单击以下按钮会演示出对应功能:
在程序中显示一个浮动帮助窗口
显示等待光标
显示十字光标
对于功能实现,逐一分享源代码如下:在程序中使用指针等不安全代码:
var MyFileName = "C:atlog.txt";
var MyReader = new MyReaderClass(MyFileName);
const int MyBuffSize = 128;
byte[] MyBuffer = new byte[MyBuffSize];
ASCIIEncoding MyEncoder = new ASCIIEncoding();
var MyInfo = MyFileName + "的内容如下:";
while (MyReader.Read(MyBuffer, 0, MyBuffSize) != 0)
MyInfo += "
" + MyEncoder.GetString(MyBuffer);
MessageBox.Show(MyInfo, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
private void button2_Click(object sender, EventArgs e)
{//在程序中显示一个浮动帮助窗口
Help.ShowPopup(this, "提高程序开发效率、拓展软件应用领域", new Point(300, 350));
}
private void button3_Click(object sender, EventArgs e)
{//显示等待光标
this.Cursor = Cursors.WaitCursor;
}
private void button4_Click(object sender, EventArgs e)
{//显示十字光标
this.Cursor = Cursors.Cross;
}
- 2023-05-20 08:40:02下载
- 积分:1