blob: 656a32bcd81bc14d04c45c01e59e13ba81ae2169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*-- Festliche Clonks --*/
#strict 2
#appendto CLNK
func Construction () {
if (mode == MODE_Festive)
{
if(GetID() == CLNK) SetGraphics(0, this, FSVC);
return (_inherited (...));
}
}
|