| 169 | } |
| 170 | |
| 171 | [LuaCallCSharp] |
| 172 | public class ChildCalss:abstractFatherClass |
| 173 | { |
| 174 | public override int add(int a, int b) |
| 175 | { |
| 176 | return a + b; |
| 177 | } |
| 178 | public void setA( int value) |
| 179 | { |
| 180 | a = value; |
| 181 | } |
| 182 | public int getA() |
| 183 | { |
| 184 | return a; |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | [LuaCallCSharp] |
| 189 | public static class StaticTestClass |
nothing calls this directly
no outgoing calls
no test coverage detected