diff options
Diffstat (limited to 'src/game/Cell.h')
-rw-r--r-- | src/game/Cell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Cell.h b/src/game/Cell.h index a558b754b83..78b12f1bf35 100644 --- a/src/game/Cell.h +++ b/src/game/Cell.h @@ -45,7 +45,7 @@ enum District ALL_DISTRICT = (UPPER_DISTRICT | LOWER_DISTRICT | LEFT_DISTRICT | RIGHT_DISTRICT | CENTER_DISTRICT) }; -struct TRINITY_DLL_DECL CellArea +struct CellArea { CellArea() : right_offset(0), left_offset(0), upper_offset(0), lower_offset(0) {} CellArea(int right, int left, int upper, int lower) : right_offset(right), left_offset(left), upper_offset(upper), lower_offset(lower) {} @@ -65,7 +65,7 @@ struct TRINITY_DLL_DECL CellArea int lower_offset; }; -struct TRINITY_DLL_DECL Cell +struct Cell { Cell() { data.All = 0; } Cell(const Cell &cell) { data.All = cell.data.All; } |