Advertisement
CassataGames

Untitled

Sep 7th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.26 KB | None | 0 0
  1. [System.Serializable]
  2. public class LevelComponents // Be sure not to remove or edit any of these or their values will be lost in Unity.
  3. {
  4.     public LevelComponent Diamond;
  5.     public LevelComponent SpikedDiamond;
  6.     public LevelComponent SolidBrick;
  7.     public LevelComponent GlassBrick;
  8.     public LevelComponent ColorSwitchBrick;
  9.     public LevelComponent ColorSwitchGate;
  10.     public LevelComponent ColorHazardBrick;
  11.     public LevelComponent ColorHazardGate;
  12.     public LevelComponent Fuse;
  13.     public LevelComponent HomingFuse;
  14.     public LevelComponent ClingingBombs;
  15.     public LevelComponent ClingingBrick;
  16.     public LevelComponent ElementalFire;
  17.     public LevelComponent ElementalLightning;
  18.     public LevelComponent ElementalFreeze;
  19.     public LevelComponent ColoredForceField;
  20.     public LevelComponent FieldSwitch;
  21.     public LevelComponent Generator;
  22.     public LevelComponent Wire;
  23.     public LevelComponent ElectricForceField;
  24.  
  25. }
  26. [System.Serializable]
  27. public class LevelComponent // Be sure not to remove or edit any of these or their values will be lost in Unity.
  28. {
  29.     public string Name;
  30.     public ComponentList.Components AttachedComponent;
  31.     public bool OneSize;
  32.     public bool Colored;
  33.     public GameObject AttachedGameObject;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement