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