[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 Skimmer Class, subclass of Starship

class Skimmer {
public:
 void cargo;

 Skimmer();
 ~Skimmer();
}

Skimmer::Skimmer()
 cargo = NULL;

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