Attribution for F3 project devs

This commit is contained in:
SilentSpike 2015-07-17 16:45:16 +01:00
parent cfcb9fedb6
commit c48719a644
4 changed files with 21 additions and 3 deletions

View File

@ -51,6 +51,7 @@ Dharma Bellamkonda <dharma.bellamkonda@gmail.com>
Dimaslg <dimaslg@telecable.es>
eRazeri
evromalarkey <evromalarkey@gmail.com>
F3 Project <alanr@ferstaberinde.com>
Falke75
Ferenczi
Ferenzi
@ -66,6 +67,7 @@ Hamburger SV
Harakhti <shadowdragonphd@gmail.com>
havena <silveredenis@gmail.com>
Hawkins
Head
jokoho482 <jokoho482@gmail.com>`
Jonpas <jonpas33@gmail.com>
Kavinsky <nmunozfernandez@gmail.com>

View File

@ -6,8 +6,8 @@ class CfgPatches {
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
author[] = {"voiper"};
authorUrl = "https://github.com/voiperr/";
author[] = {"F3 Project","Head","SilentSpike","voiper"};
authorUrl = "https://github.com/acemod";
VERSION_CONFIG;
};
};

View File

@ -1,5 +1,5 @@
/*
* Author: SilentSpike
* Author: F3 Project, Head, SilentSpike
* Handles camera manipulation according to input
*
* Arguments:

View File

@ -1,3 +1,19 @@
/*
* Author: F3 Project, Head, SilentSpike
* Processes the change in mouse position for the spectator camera
*
* Arguments:
* None <NIL>
*
* Return Value:
* None <NIL>
*
* Example:
* [] call ace_spectator_fnc_handleMouse;
*
* Public: No
*/
#include "script_component.hpp"
private ["_x","_y","_leftButton","_rightButton","_oldX","_oldY","_deltaX","_deltaY"];