repo.or.cz
/
COMP345---Clone.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial commit
[COMP345---Clone.git]
/
Item.cpp
blob
35340f16fc2fd6f514b4c28f92cce83de44c74e0
1
//!@file Item.cpp
2
//! @brief Declaration of an Item
3
//!
4
//! This class represents an item
5
//! Contains stats that d20 items may have, but does not make them accessible.
6
#include
"Item.h"
7
8
Item
::
Item
()
9
{
10
str
=
0
;
11
dex
=
0
;
12
wis
=
0
;
13
constitution
=
0
;
14
charisma
=
0
;
15
ac
=
0
;
16
atk
=
0
;
17
level
=
1
;
18
dmg
=
0
;
19
}
20
21
22
Item
::~
Item
()
23
{
24
}