Esempio n. 1
0
 public AttrProxy(SourcedItem<TypedAttribute> attr, Player player)
 {
     _attr = attr;
     _player = player;
 }
Esempio n. 2
0
 public AttrProxy(TypedAttribute attr, Player player)
 {
     _attr = new SourcedItem<TypedAttribute>(null, "<anon>", attr);
     _player = player;
 }
Esempio n. 3
0
 public VerbProxy(SourcedItem<Verb> verb, Player player)
 {
     _verb = verb;
     _player = player;
 }