Advertisement
Luciano_fuentes

Untitled

Nov 18th, 2016
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Option Explicit
  2.  
  3. Type tArenaDeath
  4. MaxUsers As Byte
  5. mapa As WorldPos
  6. Usuarios As Byte
  7. End Type
  8.  
  9. Public ArenaDeath As tArenaDeath
  10. '''''''''''''''''''''
  11. Type tArena1vs1
  12. UserIndex1 As Integer
  13. UserIndex2 As Integer
  14. Ocupada As Byte
  15. End Type
  16.  
  17. Public Arena1vs1 As tArena1vs1
  18.  
  19. ''''''''''''''''''''''
  20. Type tMapa
  21. M1vs1 As WorldPos
  22. M2vs2 As WorldPos
  23. Death As WorldPos
  24. End Type
  25.  
  26. Public MapaArenas As tMapa
  27. ''''''''''''''''''''''
  28. Type tArena2vs2
  29. Team1(1 To 2) As Integer
  30. Team2(1 To 2) As Integer
  31. Ocupada As Byte
  32. PosRecluta As WorldPos
  33. End Type
  34.  
  35.  
  36. '//Usado para saber en que evento está.
  37. Public Enum eEventos
  38. UNOVSUNO = 1
  39. DOSVSDOS = 2
  40. Death = 3
  41. End Enum
  42.  
  43. Public Arena2vs2 As tArena2vs2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement