1
1

SexStick.ts 695 B

1234567891011121314151617181920
  1. /// <reference path="../Bodypart.ts" />
  2. class SexStick extends Bodypart {
  3. /**
  4. * Returns how wide the member is. If this SexStick dependso n arousal, this function needs to ocnsider that.
  5. * This is relevant to how much a SexHole will be stretched out by this SexStick.
  6. * @returns {number}
  7. */
  8. public getWide () : Measure {
  9. return new Measure()
  10. }
  11. /**
  12. * Returns how long the member is. If this SexStick depends on arousal, this function needs to consider that.
  13. * This is relevant to how much a SexHole will be stretched out by this SexStick.
  14. * @returns {number}
  15. */
  16. public getLong () : Measure{
  17. return new Measure()
  18. }
  19. }