mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
12 lines
135 B
C#
12 lines
135 B
C#
|
public class My {
|
||
|
private Dye foo;
|
||
|
|
||
|
public My(string msg) {
|
||
|
foo = new Dye(msg);
|
||
|
}
|
||
|
|
||
|
public void display() {
|
||
|
foo.display();
|
||
|
}
|
||
|
}
|