7 lines
111 B
Plaintext
7 lines
111 B
Plaintext
|
|
class Base_C_Object {
|
||
|
|
C_Object = null;
|
||
|
|
|
||
|
|
constructor(gObject) {
|
||
|
|
this.C_Object = gObject;
|
||
|
|
}
|
||
|
|
}
|