fixed issue

This commit is contained in:
MassiveAtoms
2019-06-24 20:15:30 -03:00
parent 162d79b7d7
commit 20c5e25619
2 changed files with 4 additions and 5 deletions

View File

@ -12,9 +12,9 @@ using std::string;
// enum type is basically een manier om categories te representen als een integer in the background, maar om t in code
// aan te geven als de actual category.
enum class Verhicle_type {
"small" = 1,
"medium" = 2,
"large" = 3,
small = 1,
medium = 2,
large = 3,
};
/*