Throwaway code for a throwaway branch
Chris Pressey
1 year, 10 months ago
91 | 91 |
public void run(BitMap bitmap) {
|
92 | 92 |
this.bitmap = bitmap;
|
93 | 93 |
for (int i = 0; i < 100; i++) {
|
|
94 |
System.out.println(i);
|
94 | 95 |
for (Command c : commands) {
|
|
96 |
System.out.println(c.toString());
|
95 | 97 |
c.execute(this);
|
96 | 98 |
}
|
97 | 99 |
}
|