标签: oop public angelscript
在AngelScript中无法获取公共类属性吗?
我想做的是
class A { int number = 1; A() {} } //... A a = A(); print(a.number);
使用getter和setter的唯一选择吗?