您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
24 行
527 B
24 行
527 B
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HuaweiService;
|
|
using HuaweiService.CloudFunction;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using Debug = UnityEngine.Debug;
|
|
|
|
namespace HuaweiServiceDemo {
|
|
public class Number {
|
|
public int number1;
|
|
public int number2;
|
|
public int sum () {
|
|
return number1 + number2;
|
|
}
|
|
}
|
|
public class Sum {
|
|
public int result;
|
|
public int getResult () {
|
|
return result;
|
|
}
|
|
}
|
|
}
|