Adding required files

This commit is contained in:
SAM
2015-05-08 09:28:48 +02:00
parent c2bb6386af
commit 2c8dddfc47
4 changed files with 36 additions and 5 deletions

View File

@ -0,0 +1,24 @@
/*
* Author: Winter
* Sets the player's current view distance according to allowed values.
*
*
* Arguments:
* 0: View Distance Setting (SCALAR)
*
* Return Value:
* None
*
* Example:
* [1500] call ace_common_fnc_imanexample
*
* Public: No
*/
#include "script_component.hpp"
private ["_new_view_distance"];
_new_view_distance = _this select 0;
player setViewDistance (_new_view_distance);

View File

@ -1,3 +0,0 @@
#include "script_component.hpp"
diag_log text format["This is here as an example!!!"];