1.7.4 CE sync

This commit is contained in:
Aaron Clark
2012-11-05 16:11:06 -06:00
parent 0d59fb827b
commit 5a5ac0f867
14 changed files with 408 additions and 70 deletions

View File

@@ -1,5 +1,7 @@
class CfgVehicles {
class Animal;
class Pastor;
class Fin;
class DZAnimal: Animal
{
scope = 0;
@@ -39,12 +41,24 @@ class CfgVehicles {
class VariablesScalar {};
class VariablesString {};
};
class Dog1 : DZAnimal {
class DZ_Pastor : Pastor {
scope = 2;
model = "\ca\animals2\Dogs\Pastor\Pastor";
displayName = "Alsatian";
moves = "CfgMovesDogDZ";
gestures = "CfgGesturesDogDZ";
fsmDanger = "";
fsmFormation = "";
};
class DZ_Fin : Fin {
scope = 2;
model = "\ca\animals2\Dogs\Fin\Fin";
displayName = "Fin";
moves = "CfgMovesDogDZ";
gestures = "CfgGesturesDogDZ";
fsmDanger = "";
fsmFormation = "";
};
class Soldier_Crew_PMC;