Advertisement
BitEmE

GTA V - ANIMALS

Jun 22nd, 2014
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. // this list also includes the animals in the pc/xbox one/playstation 4 release version of GTA 5
  2. // this animals are listed twice or more in the current version of gta5 on xbox360,ps3 - actually most are disabled due resource costs
  3.  
  4. enum eVAnimals {
  5.     ANIMAL_NONE = 0,
  6.     ANIMAL_BOAR,
  7.     ANIMAL_CHICKEN,
  8.     ANIMAL_DOG,
  9.     ANIMAL_HORSE,
  10.     ANIMAL_COW,
  11.     ANIMAL_COYOTE,
  12.     ANIMAL_DEER,
  13.     ANIMAL_EAGLE,
  14.     ANIMAL_FISH,
  15.     ANIMAL_HENS,
  16.     ANIMAL_MONEY,
  17.     ANIMAL_LION,
  18.     ANIMAL_PIGEON,
  19.     ANIMAL_RAT,
  20.     ANIMAL_SEAGULL,
  21.     ANIMAL_CROW,
  22.     ANIMAL_PIG,
  23.     ANIMAL_RHESUS,
  24.     ANIMAL_CHIMP,
  25.     ANIMAL_HUSKY
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement