21 lines
427 B
Text
21 lines
427 B
Text
// Generic double use script
|
|
|
|
#include "../common/header.ds"
|
|
output "p:/base/ds/common"
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// Define
|
|
|
|
parameter entity e_target // Entity to use twice
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// Action
|
|
|
|
use entity e_target
|
|
use entity e_target
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// Cleanup
|
|
|
|
exit
|
|
|