mirror of https://github.com/PrimeDecomp/prime.git
10 lines
230 B
Bash
10 lines
230 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
path=$1
|
||
|
|
||
|
sed -i "s/std::string_view/const rstl::string\&/g" "$path"
|
||
|
sed -i "s/zeus::CTransform/CTransform4f/g" "$path"
|
||
|
sed -i "s/zeus:://g" "$path"
|
||
|
sed -i "s/visitor.Visit(this)/visitor.Visit(*this)/g" "$path"
|