diff --git a/HelloWorld.uc b/HelloWorld.uc new file mode 100644 index 00000000..f400c85b --- /dev/null +++ b/HelloWorld.uc @@ -0,0 +1,6 @@ +class HelloWorld extends GameInfo; + +event InitGame( string Options, out string Error ) +{ + `log( "Hello, world!" ); +} diff --git a/README.md b/README.md index 02d5fa6e..2ae55ff8 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,10 @@ Swift is a general-purpose, multi-paradigm, compiled programming language develo - [x] **TypeScript** +- [x] **UnrealScript** + +UnrealScript is the scripting language for the Unreal Engines prior to UE4. Similar to Java, UnrealScript is object-oriented without multiple inheritance (classes all inherit from a common Object class), and classes are defined in individual files named for the class they define. Unlike Java, UnrealScript is case-insensitive, and does not have object wrappers for primitive types. This powerful scripting language has lead to the longevity of the old Unreal and Unreal Tournament games. + - [x] **VB.NET** - [x] **Whitespace**