[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 Transport Class

class Transport {
public:
 void cargo;
 void driver;
 void aux;
 void secondary;
 void* drive;

 void dock(void* dest);

 Skimmer();
 ~Skimmer();
}

Skimmer::Skimmer()
 cargo = NULL;

Skimmer::~Skimmer()
 free(cargo);

void Skimmer:dock(void* dest)
 memcpy(dest, this, sizeof(drive) + sizeof(this));