GitHub_collection_hello-world/u/Unreal Script.uc
MrBrain295 a265e7fb35
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>
2021-04-17 12:42:22 +12:00

8 lines
111 B
Ucode

class HelloWorld extends Mutator;
function PostBeginPlay()
{
Super.PostBeginPlay();
Log("Hello World");
}