예제 #1
0
파일: Icon.cs 프로젝트: Somnium13/SS13
        public void Blend(dynamic icon = null, int?f = null, double?x = null, double?y = null)
        {
            x = x ?? 1;
            y = y ?? 1;

            Icon13.oper_blend(this.icon, icon, f, ((int?)(x)), ((int?)(y)));
        }