DayZ 1.24
Loading...
Searching...
No Matches
Worm.c
Go to the documentation of this file.
1class Worm extends Edible_Base
2{
3 override bool CanBeCookedOnStick()
4 {
5 return false;
6 }
7
8 override bool CanBeCooked()
9 {
10 return false;
11 }
12
13 override bool IsMeat()
14 {
15 return true;
16 }
17}
override bool CanBeCookedOnStick()
Definition Worm.c:3
override bool IsMeat()
Definition Worm.c:13
override bool CanBeCooked()
Definition Worm.c:8