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