File: Point.pm

package info (click to toggle)
libcoat-perl 0.331-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 276 kB
  • ctags: 82
  • sloc: perl: 917; makefile: 41
file content (8 lines) | stat: -rw-r--r-- 115 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
package Point;

use Coat;

has 'x' => ( isa => 'Int', default => 0);
has 'y' => ( isa => 'Int', default => 0);

1;