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

View File

@@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every
Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project!
<!--Languages start-->
## Languages (756 total)
## Languages (757 total)
* [!@#$%^&()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B)
* [05AB1E](%23/05AB1E)
@@ -706,6 +706,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
* [Unicorn](u/Unicorn.icn)
* [Uniface](u/Uniface.uniface)
* [Unlambda](u/Unlambda.unl)
* [Unreal Script](u/Unreal%20Script.uc)
* [V](v/V)
* [V](v/V.v)
* [Vala](v/Vala.vala)

7
u/Unreal Script.uc Normal file
View File

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