예제 #1
0
파일: Thunderstorm.cs 프로젝트: rakot/rawr
        public static Thunderstorm operator *(Thunderstorm A, float b)
        {
            Thunderstorm C = (Thunderstorm)A.MemberwiseClone();

            multiply(A, b, C);
            return(C);
        }
예제 #2
0
파일: Thunderstorm.cs 프로젝트: rakot/rawr
        public static Thunderstorm operator +(Thunderstorm A, Thunderstorm B)
        {
            Thunderstorm C = (Thunderstorm)A.MemberwiseClone();

            add(A, B, C);
            return(C);
        }