blob: 9c77090739b16f264168ed8e50e713d7af05fc70 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001 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