Advertisement
ulfben

Breakout XML format (example 1)

Jan 10th, 2016
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Data>
  3.     <Game
  4.     ballSpeed="0.4"
  5.     paddleCurve="0.007"
  6.     startingLives="3"
  7.     scorePerHit="50"
  8.     consecutiveScorePerHit="10"
  9.     powerupChance="15"
  10.     powerupSpeed="0.2"
  11.     maxLevel="3">
  12.     </Game>
  13.    
  14.     <Level_0
  15.     rows="7"
  16.     columns="9"
  17.     layout="000111000
  18.             001111100
  19.             011313110
  20.             001141100
  21.             001111100
  22.             001222100
  23.             001111100">
  24.     </Level_0>
  25.    
  26.     <Level_1
  27.     rows="5"
  28.     columns="9"
  29.     layout="112343211
  30.             011232110
  31.             001121100
  32.             000111000
  33.             000010000">
  34.     </Level_1>
  35.    
  36.     <Level_2
  37.     rows="10"
  38.     columns="9"
  39.     layout="102010201
  40.             102010201
  41.             102010201
  42.             102010201
  43.             102010201
  44.             102010201
  45.             102010201
  46.             102010201
  47.             102010201
  48.             102010201">
  49.     </Level_2>
  50.    
  51.     <Level_3
  52.     rows="9"
  53.     columns="9"
  54.     layout="111111111
  55.             100000001
  56.             101111101
  57.             101000101
  58.             101010101
  59.             101010101
  60.             101011101
  61.             101000001
  62.             101111111">
  63.     </Level_3>
  64. </Data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement