BWAPI
|
00001 /* 00002 * Task.h - Tasks are assigned to Managers for execution. A Task 00003 * should provide enough information for the Manager to complete. 00004 */ 00005 #pragma once 00006 00007 typedef unsigned Priority; // Future class Priority will provide more dynamic sorting 00008 00009 class Task 00010 { 00011 Priority priority; 00012 00013 public: 00014 };