File: Ball.tan

package info (click to toggle)
libtangence-perl 0.33-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 580 kB
  • sloc: perl: 6,076; makefile: 15
file content (11 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
include "Colourable.tan"

class t.Ball {
  isa t.Colourable;

  method bounce(str howhigh) -> str;

  event bounced(str howhigh);

  smashed prop size = int;
}