12 lines
No EOL
169 B
C#
12 lines
No EOL
169 B
C#
namespace Server
|
|
{
|
|
public delegate MoveResult MoveMethod( Direction d );
|
|
|
|
public enum MoveResult
|
|
{
|
|
BadState,
|
|
Blocked,
|
|
Success,
|
|
SuccessAutoTurn
|
|
}
|
|
} |