[Note: Coded by Sam Schreiber, who doesn't have far* too much time on his hands now that the school year has started. This is a C++ parody of Star Wars, in case you can't figure that out.]
[Note: Specifically, these are Pointer Wars Action Classes. They are C++ parodies of the Star Wars action figures.]

//The Cruiser Class

class Cruiser {
public:
 void* shielding[10];
 void lock(void *tar);
 void fire();
 void process(char* string);

protected:
 void target;

 Cruiser();
 ~Cruiser();
}

Cruiser::Cruiser()
 for(int i=0; i<10; i++) shielding[i] = malloc(0);

Cruiser::~Cruiser()
 for(int i=0; i<10; i++) free(shielding[i]);

void Cruiser::lock(void *tar)
 target = tar;

void Cruiser::fire()
 fire(target);

void Cruiser::process(char* string)
 poke(irq(001F), string);