Dayz Explorer 1.29.162510
Loading...
Searching...
No Matches
actiondummyrelease.c
Go to the documentation of this file.
1//dummy action for release indication
2class ActionDummyContinuousRelease: ActionContinuousBase
3{
4 void ActionDummyContinuousRelease()
5 {
6 m_Text = "#STR_FishingAction_Yank" + " [" + "#keybind_release" + "]";
7 }
8
9 override typename GetInputType()
10 {
11 return DefaultActionInput;
12 }
13
14 override bool HasTarget()
15 {
16 return false;
17 }
18}
bool HasTarget()
Definition actionbase.c:250
string m_Text
Definition actionbase.c:64