HomeSort by: relevance | last modified time | path
    Searched defs:mtry (Results 1 - 2 of 2) sorted by relevancy

  /src/games/rogue/
monster.c 128 static int mtry(object *, short, short);
380 mtry(monster, row, monster->col)) {
389 mtry(monster, monster->row, col)) {
392 if (mtry(monster, row, col)) {
402 if (!tried[n] && mtry(monster, row, monster->col-1)) {
407 if (!tried[n] && mtry(monster, row, monster->col)) {
412 if (!tried[n] && mtry(monster, row, monster->col+1)) {
417 if (!tried[n] && mtry(monster, monster->row-1, col)) {
422 if (!tried[n] && mtry(monster, monster->row, col)) {
427 if (!tried[n] && mtry(monster, monster->row+1, col))
458 mtry(object *monster, short row, short col) function in typeref:typename:int
    [all...]
monster.c 128 static int mtry(object *, short, short);
380 mtry(monster, row, monster->col)) {
389 mtry(monster, monster->row, col)) {
392 if (mtry(monster, row, col)) {
402 if (!tried[n] && mtry(monster, row, monster->col-1)) {
407 if (!tried[n] && mtry(monster, row, monster->col)) {
412 if (!tried[n] && mtry(monster, row, monster->col+1)) {
417 if (!tried[n] && mtry(monster, monster->row-1, col)) {
422 if (!tried[n] && mtry(monster, monster->row, col)) {
427 if (!tried[n] && mtry(monster, monster->row+1, col))
458 mtry(object *monster, short row, short col) function in typeref:typename:int
    [all...]

Completed in 21 milliseconds