| MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 1 | int fun() { |
| 2 | printf("%O [b] fun()\n", this_object()); | ||||
| 3 | find_object("/doc/beispiele/shadow/aa")->fun(); | ||||
| 4 | } | ||||
| 5 | |||||
| 6 | void fun2() { | ||||
| 7 | printf("%O [b] fun2()\n", this_object()); | ||||
| 8 | find_object("/doc/beispiele/shadow/aa")->fun3(); | ||||
| 9 | this_object()->fun3(); | ||||
| 10 | } | ||||
| 11 | |||||
| 12 | void do_shadow(object target) { shadow(target, 1); } | ||||
| 13 | |||||