代码搜索:Direction
找到约 10,000 项符合「Direction」的源代码
代码结果 10,000
www.eeworm.com/read/367139/2854523
java direction.java
package com.bjsxt.tank;
public enum Direction {
L, LU, U, RU, R, RD, D, LD, STOP
}
www.eeworm.com/read/361182/2952528
cs direction.cs
namespace Imps.Client.Utils
{
using System;
public enum Direction
{
Left,
Right,
Up,
Down
}
}
www.eeworm.com/read/262572/4310868
java direction.java
/*
* Location.java
*
* Created on August 1, 2007, 11:27 AM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package dyno.swing.desi
www.eeworm.com/read/155067/5630174
asmx direction.asmx
using System.Web.Services;
using System.Web.Services.Protocols;
public class SimpleSoapHeader : SoapHeader{
public string Value;
}
publ
www.eeworm.com/read/393116/8309700
java direction.java
/**
* 方向的枚举类,分别表示,左,左上,上,右上,右,右下,下,左下,
* @author Nightelf暗夜精灵
*
*/
public enum Direction {
L, LU, U, RU, R, RD, D, LD, STOP
};
www.eeworm.com/read/393116/8309983
class direction.class
www.eeworm.com/read/100775/15864472
java direction.java
/**
* Sets the directions, used mainly on the board, and crates the posibility for
* finding the opposite direction.
*/
class Direction {
final static int NORTH;
final static int NORTHEAS