1234567891011121314151617181920 |
- /// <reference path="../Bodypart.ts" />
- class SexStick extends Bodypart {
- /**
- * Returns how wide the member is. If this SexStick dependso n arousal, this function needs to ocnsider that.
- * This is relevant to how much a SexHole will be stretched out by this SexStick.
- * @returns {number}
- */
- public getWide () : Measure {
- return new Measure()
- }
- /**
- * Returns how long the member is. If this SexStick depends on arousal, this function needs to consider that.
- * This is relevant to how much a SexHole will be stretched out by this SexStick.
- * @returns {number}
- */
- public getLong () : Measure{
- return new Measure()
- }
- }
|