コード例 #1
0
ファイル: Empty.cs プロジェクト: jphamilton/colossal-cave
 public bool Expects(Object obj, Preposition.On on, Object indirect)
 {
     return(Pour(obj, indirect));
 }
コード例 #2
0
 public bool Expects([Held] Object obj, Preposition.On on, Object indirect)
 {
     return(Redirect <ThrowAt>(obj, v => v.Expects(obj, new Preposition.At(), indirect)));
 }
コード例 #3
0
 public bool Expects(Object obj, Preposition.On on)
 {
     return(Redirect <SwitchOn>(obj, v => v.Expects(obj, on)));
 }
コード例 #4
0
ファイル: SwitchOn.cs プロジェクト: jphamilton/colossal-cave
 public bool Expects(Object obj, Preposition.On on)
 {
     return(On(obj));
 }
コード例 #5
0
ファイル: Put.cs プロジェクト: jphamilton/colossal-cave
 // wear
 public bool Expects(Object obj, Preposition.On on)
 {
     return(Redirect <Wear>(obj, v => v.Expects(obj)));
 }