コード例 #1
0
ファイル: AttrProxy.cs プロジェクト: kayateia/climoo
 public AttrProxy(SourcedItem<TypedAttribute> attr, Player player)
 {
     _attr = attr;
     _player = player;
 }
コード例 #2
0
ファイル: AttrProxy.cs プロジェクト: kayateia/climoo
 public AttrProxy(TypedAttribute attr, Player player)
 {
     _attr = new SourcedItem<TypedAttribute>(null, "<anon>", attr);
     _player = player;
 }
コード例 #3
0
ファイル: VerbProxy.cs プロジェクト: nic0lette/climoo
 public VerbProxy(SourcedItem<Verb> verb, Player player)
 {
     _verb = verb;
     _player = player;
 }