Add Unreal Script (#982)

* Add Unreal Script
Add Unreal Script.

* Fix requested changes

Co-authored-by: Richie Bendall <richiebendall@gmail.com>

* Fix requested changes

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
MrBrain295
2021-04-16 19:42:22 -05:00
committed by GitHub
parent 94c9a5cc89
commit a265e7fb35
2 changed files with 9 additions and 1 deletions

7
u/Unreal Script.uc Normal file
View File

@@ -0,0 +1,7 @@
class HelloWorld extends Mutator;
function PostBeginPlay()
{
Super.PostBeginPlay();
Log("Hello World");
}