-
一个非常简单的彩票软件,大家可以先看看!
一个非常简单的彩票软件,大家可以先看看!-A very simple lottery software, we can take a look!
- 2023-05-18 22:40:04下载
- 积分:1
-
嗯
知名游戏《模拟城市》(SimCity)公开了源代码,采用的是GPLv3许可证。由于版权方面的考虑,开源版本的《模拟城市》改名为 Micropolis,这正是它最初的开发代号。获得了《模拟城市》商标的持有者EA同意后,OLPC可以在XO笔记本上使用SimCity这一名称。负责《模拟城市》更新和维护的Don Hopkins为XO版本进行一些很cool的改动,程序也从最初的C代码换成了C++和Python。可以到这个网址下载所有不同版本的源代码。-Well-known game " Sim City" (SimCity) source code public, using the GPLv3 license. Because of copyright considerations, the open source version of the " Sim City" was renamed Micropolis, which is code-named its initial development. Access to the " Sim City" the holder of trademark EA consent, OLPC can be used in the XO notebook the name SimCity. Responsible for " Sim City" to update and maintain the XO version of Don Hopkins for some very cool changes, the program from the original C code into a C++ and Python. Can go to this website all the different versions of source code.
- 2023-08-14 14:25:05下载
- 积分:1
-
塔防类游戏代码类似王国保卫战
应用背景塔防类游戏,总共三个关卡,每个关卡三个批次。怪物有两条移动路径,随机选择一条路径移动,怪物有分种类,不同类型怪物属性不同。炮塔有两种,一种是发子弹,一种是射箭。可以升级,出售。游戏主要类有:怪物管理器,英雄管理器,子弹管理器,移动控制器等。代码量大概3000左右。关键技术主要是各种配置文件的读取与解析,包括怪物类型文件,路线文件,炮塔位置文件,xml、json文件等。其次是整个游戏逻辑的理解。
- 2023-02-25 18:20:03下载
- 积分:1
-
The software EWB lights, digital logic circuit curriculum design, good things we...
EWB 软件实现的交通灯,数字逻辑电路课程设计,好东西哦-The software EWB lights, digital logic circuit curriculum design, good things well
- 2022-02-11 18:31:53下载
- 积分:1
-
thesis I used some of the pretreatment process, a lot of procedures are prepared...
我论文里用到的预处理的一些程序,很多程序都是我自己编写的,有用的可以一起讨论-thesis I used some of the pretreatment process, a lot of procedures are prepared by myself, can be useful to discuss
- 2022-11-23 16:25:03下载
- 积分:1
-
Jsp远程管理系统
Jsp远程管理系统,跨平台、共享80端口的远程管理,登录后可显示:用户的注释国家(地区)代码帐户启用帐户到期上次设置密码密码到期密码可更改需要密码用户可以更改密码允许的工作站登录脚本用户配置文件主目录上次登录可允许的登录小时数本地组成员全局组成员。
- 2023-07-15 00:20:03下载
- 积分:1
-
surfer转换为ANSYS源代码(可实现地质体的三维建模和网格化)
surfer转换为ANSYS源代码(可实现地质体的三维建模和网格化)-surfer to ANSYS
- 2022-02-26 05:59:38下载
- 积分:1
-
SSB modulation code Itcan help you to test you matlab
SSB modulation code Itcan help you to test you matlab-SSB modulation code Itcan help you to test you matlab
- 2022-03-25 06:33:41下载
- 积分:1
-
Visual C# 隐藏、显示开始按钮
C# 隐藏、显示开始按钮,把Windows的开始菜单隐藏起来,看不到“开始”菜单了,Windows7则隐藏了窗口图标,不过这样会很不方便哦,本源码只是学习C#与Windows之间的相关编程技巧,下面的代码实现了隐藏显示开始菜单的功能:
[DllImport("user32.dll")]//寻找窗口列表中第一个符合指定条件的顶级窗口
public static extern int FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]//在窗口列表中寻找与指定条件相符的第一个子窗口
public static extern int FindWindowEx(int hWnd1, int hWnd2, string lpsz1, string lpsz2);
[DllImport("user32.dll")]//控制窗口的可见性
public static extern int ShowWindow(int hwnd, int nCmdShow);
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_HIDE);//隐藏开始按钮
else if (radioButton2.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_SHOW);//显示开始按钮
}
- 2022-05-20 11:42:02下载
- 积分:1
-
X264: A HIGH PERFORMANCE H.264/AVC ENCODER 详细介绍了x264采用的技术细节,对理解x264源码大有好处。...
X264: A HIGH PERFORMANCE H.264/AVC ENCODER 详细介绍了x264采用的技术细节,对理解x264源码大有好处。
- 2022-10-01 18:25:03下载
- 积分:1