diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-12-05 06:58:43 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-12-05 06:59:48 +0100 |
commit | 9cc4a3ca144332166c8b63f95c85ac6395698237 (patch) | |
tree | bef6a86b2f32a24fb899d009a43058fdd8e86cfa /common | |
parent | af4fdad3bd82c926ef742aa419c18cb15595703d (diff) |
Renamed target types.
Diffstat (limited to 'common')
-rw-r--r-- | common/action.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/common/action.h b/common/action.h index 122411b..e229d2c 100644 --- a/common/action.h +++ b/common/action.h @@ -20,9 +20,12 @@ class Action { //! Action target type. enum TargetType { - None, // No target - Hand, // Target in hand. - Open // Target in open. + //! Action is targetless. + None, + //! Target is index in first group (concealed hand). + Index, + //! Target is index of group. + Group }; //! Type of action. |