mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5332059738
* init commit * review changes * removed Land_vn_building_base import * case sensitive includes * changed to use script_component.hpp * config style * config style * config style * config style * revert to define * defines.hpp * defines.hpp Co-authored-by: commy2 <commy-2@gmx.de>
16 lines
387 B
C++
16 lines
387 B
C++
|
|
// dragging carrying items
|
|
class ReammoBox_F;
|
|
class vn_ammobox_base: ReammoBox_F {
|
|
EGVAR(cargo,size) = 1;
|
|
EGVAR(cargo,canLoad) = 1;
|
|
|
|
EGVAR(dragging,canCarry) = 1;
|
|
EGVAR(dragging,carryPosition)[] = {0,1,1};
|
|
EGVAR(dragging,carryDirection) = 0;
|
|
|
|
EGVAR(dragging,canDrag) = 1;
|
|
EGVAR(dragging,dragPosition)[] = {0,1.2,0};
|
|
EGVAR(dragging,dragDirection) = 0;
|
|
};
|