annotate spe/Bom.cc @ 60:cfd42ee2ad28

change makefile, spe/task. adjust scale api. worked on ps3-ppe.
author yutaka@localhost.localdomain
date Sun, 06 Feb 2011 17:16:43 +0900
parents 927401604461
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
60
cfd42ee2ad28 change makefile, spe/task. adjust scale api. worked on ps3-ppe.
yutaka@localhost.localdomain
parents: 17
diff changeset
1 #include "task_object.h"
cfd42ee2ad28 change makefile, spe/task. adjust scale api. worked on ps3-ppe.
yutaka@localhost.localdomain
parents: 17
diff changeset
2 #include "../ObjectType.h"
17
927401604461 add spe object
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
927401604461 add spe object
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 void
60
cfd42ee2ad28 change makefile, spe/task. adjust scale api. worked on ps3-ppe.
yutaka@localhost.localdomain
parents: 17
diff changeset
5 Bom(int x, int y, ObjDataPtr obj)
17
927401604461 add spe object
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 {
60
cfd42ee2ad28 change makefile, spe/task. adjust scale api. worked on ps3-ppe.
yutaka@localhost.localdomain
parents: 17
diff changeset
7 obj->type = Boms;
cfd42ee2ad28 change makefile, spe/task. adjust scale api. worked on ps3-ppe.
yutaka@localhost.localdomain
parents: 17
diff changeset
8 obj->x = x;
cfd42ee2ad28 change makefile, spe/task. adjust scale api. worked on ps3-ppe.
yutaka@localhost.localdomain
parents: 17
diff changeset
9 obj->y = y;
17
927401604461 add spe object
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10
927401604461 add spe object
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 return;
927401604461 add spe object
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 }