#!/usr/bin/perl
# Update the basemass really if the mass is changed. Of course that comes
# back and updates the _mass via the physics object.
#use Mooix::Thing;
run sub {
	my $this=shift;
	
	if (@_) {
		$this->basemass(@_);
	}

	return $this->_mass;
}
