7 lines
112 B
Plaintext
7 lines
112 B
Plaintext
|
// Generic Door Closing after 10 seconds
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
DelayCommand(10.0, ActionCloseDoor(OBJECT_SELF));
|
||
|
}
|