Skip to content
This repository has been archived by the owner on Oct 1, 2019. It is now read-only.

Added UnrealScript Language #2093

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions HelloWorld.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class HelloWorld extends GameInfo;

event InitGame( string Options, out string Error )
{
`log( "Hello, world!" );
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down