码迷,mamicode.com
首页 >  
搜索关键字:gaming mouse    ( 1193个结果
根据之前的博文,我把给同学做的三子棋小游戏的代码发出来,只是界面很丑很丑,AI算法很笨很笨,过几天我传到网盘上,提供大家下载娱乐
1 background_image_filename = 'blackground.png' 2 black_mouse_image_filename = 'black.png' 3 white_mouse_image_filename = 'white.png' 4 restart_i...
分类:其他好文   时间:2014-06-26 15:21:46    阅读次数:243
C语言控制台窗口图形界面编程(八):鼠标事件
上次讲的是键盘事件,这次我们介绍鼠标事件。下面先介绍下鼠标事件的结构体以及相关信息。typedefstruct_MOUSE_EVENT_RECORD//鼠标事件结构体{COORDdwMousePosition;//当前鼠标在控制台窗口缓冲区的位置DWORDdwButtonState;//鼠标按键的状...
分类:编程语言   时间:2014-06-25 11:17:35    阅读次数:333
20天自制操作系统(八)
移动鼠标并显示鼠标坐标struct MOUSE_DEC { unsigned char buf[3], phase; int x, y, btn;}; enable_mouse(&mdec); for (;;) { io_cli(); //...
分类:其他好文   时间:2014-06-19 06:55:18    阅读次数:201
窗体或控件的两种拖动方式
第一种音量调节的示例#region 音量控制 private Point mouse_offset; private void pictureBox7_MouseDown(object sender, MouseEventArgs e) { ...
分类:Windows程序   时间:2014-06-13 06:56:03    阅读次数:384
[Unity菜鸟] Unity鼠标双击,鼠标函数整理(未完)
1. 鼠标双击 void OnGUI() { Event Mouse = Event.current; if (Mouse.isMouse && Mouse.type == EventType.MouseDown && Mouse.clickCount == 2) ...
分类:其他好文   时间:2014-06-09 18:40:28    阅读次数:227
jquery_ui
/*! jQuery UI - v1.10.4 - 2014-01-17 * http://jqueryui.com * Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.position....
分类:Web程序   时间:2014-06-06 14:43:05    阅读次数:456
十四周 项目 1 动物这样叫
#include #include using namespace std; class Animal { public: virtual void cry() { cout<<"不知哪种动物,让我如何学叫?"<<endl; } }; class Mouse:public Animal { public: Mous...
分类:其他好文   时间:2014-06-05 04:22:09    阅读次数:233
关于对象引用的作用域
var cat ={};cat.mouse = function(){var b="1111"};var dog = cat;console.log(dog);console.log(dog.mouse);dog.mouse = function(){var b="2222"};dog.hat="....
分类:其他好文   时间:2014-05-24 09:59:18    阅读次数:246
UVA之1330 - City Game
【题目】 Bob is a strategy game programming specialist. In his new city building game the gaming environment is as follows: a city is built up by areas, in which there are streets, trees, factories and...
分类:其他好文   时间:2014-05-22 13:09:50    阅读次数:247
BingMap改变鼠标样式【Map/Pushpin/Polygon】
Microsoft.Maps.Events.addHandler(map, "mousemove", function (e) { // get the HTML DOM Element that represents the Map var mapElem = map.getRootElement(); if (e.targetType === "map") { // Mou...
分类:其他好文   时间:2014-05-21 10:47:53    阅读次数:253
1193条   上一页 1 ... 116 117 118 119 120 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!