Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class CharacterAttribute : Attribute { /* ... */ }
  2. public enum CharacterAttributeType {
  3.     Health
  4. }
  5.  
  6. public class Character {
  7.     private Dictionary<CharacterAttributeType, CharacterAttribute> attributes;
  8.  
  9.     public CharacterAttribute GetAttribute (CharacterAttributeType type) {
  10.         return this.attributes[type];
  11.     }
  12. }
  13.  
  14. // Adesso sarĂ  possibile monitorare "la morte del personaggio" in questo modo.
  15.  
  16. istanzaPersonaggio.GetAttribute(CharacterAttributeType.Health).OnCurrentChange = (int amount) => {
  17.     if (istanzaPersonaggio.GetAttribute(CharacterAttributeType.Health).Current == 0) {
  18.         /* Morto. */
  19.     }
  20. }