lift some of the rspace handling into the Resolution* classes
[scpubgit/DX.git] / lib / DX / Resolution.pm
1 package DX::Resolution;
2
3 use DX::Class;
4
5 has veracity_depends_on => (is => 'ro', required => 1);
6
7 has actions => (is => 'ro', required => 1);
8
9 sub next_resolution { $_[0] }
10
11 sub remainder { () }
12
13 1;