Skip to content

Commit

Permalink
Notepad
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangho-Andrew-Lee committed Oct 31, 2012
1 parent a256d96 commit 21bf5e2
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion TestGame/TestGame/Monster.cs
Expand Up @@ -5,6 +5,10 @@

namespace TestGame
{
//Task currentTask;
//State currentState;
//ArrayList<Task> tasks = [];

class Monster
{
private enum monster_attr
Expand Down Expand Up @@ -59,6 +63,26 @@ public class play
//TODO: I. Check to see if there is an play_item[ball] on the grid
// II. 3D implementation?!
}

public class update
{
// if(tasks.count == 0)
// continueWalk = true;
// else if (boolean && currentState == wait)
// break;
// else{
// continueWalk = false;
// currentState = go;
// }
}
public class createTask(Task task)
{
//for (int i = 0; i < task.length ; i++){
// if (task[i].priority < object.priority)
// {
// task.add(object , i);
// i = task.length;
// }
//}
}
}
}

0 comments on commit 21bf5e2

Please sign in to comment.