generated from sigonasr2/CPlusPlusProjectTemplate
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
258 B
12 lines
258 B
2 years ago
|
#Usage: ./createmap.sh <mapname>
|
||
|
if [ -z "$1" ]
|
||
|
then
|
||
|
echo "Usage: ./createmap.sh <mapname>"
|
||
|
else
|
||
|
cd assets/maps
|
||
|
cp TEMPLATEMAP_1 $1
|
||
|
cp TEMPLATEMAP_2 $1_2
|
||
|
cp TEMPLATEMAP_3 $1_3
|
||
|
cp TEMPLATEMAP_4 $1_4
|
||
|
cp TEMPLATEMAP_5 $1_5
|
||
|
fi
|