Mercurial > hg > Game > Cerium
annotate include/TaskManager/TaskQueue.h @ 161:18c42658e0e7 draft fullHD_omedetou
texture の座標がマイナスになったあと、それを 0 にし忘れてた
author | gongo@localhost.localdomain |
---|---|
date | Mon, 08 Dec 2008 16:37:02 +0900 |
parents | 028ffc9c0375 |
children | 3fc86ddf5d1c |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_TASK_QUEUE |
2 #define INCLUDED_TASK_QUEUE | |
3 | |
4 #ifndef INCLUDED_BASE_H_ | |
5 # include "base.h" | |
6 #endif | |
7 | |
8 #ifndef INCLUDED_TASK | |
9 # include "Task.h" | |
10 #endif | |
11 | |
12 #include <stdio.h> | |
13 | |
14 class TaskQueue { | |
15 public: | |
16 TaskQueue(TaskPtr q = NULL); | |
17 | |
18 BASE_NEW_DELETE(TaskQueue); | |
19 | |
20 TaskPtr task; | |
21 class TaskQueue *next; | |
22 | |
23 static TaskQueue* append(TaskQueue* list, TaskQueue* q); | |
24 }; | |
25 | |
26 typedef TaskQueue* TaskQueuePtr; | |
27 | |
28 #endif |