コード例 #1
0
 public override DustObject Divide(DustObject other)
 {
     return(new DustFloat(Value / other.ToFloat()));
 }
コード例 #2
0
 public override DustObject Subtract(DustObject other)
 {
     return(new DustFloat(Value - other.ToFloat()));
 }
コード例 #3
0
 public override DustObject Multiply(DustObject other)
 {
     return(new DustFloat(Value * other.ToFloat()));
 }
コード例 #4
0
 public override DustObject Add(DustObject other)
 {
     return(new DustFloat(Value + other.ToFloat()));
 }