Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
GetWorldCinematicTrack.c
Go to the documentation of this file.
1[CinematicTrackAttribute(name:"GetWorld Track", description:"Track used for getting world")]
3{
4 static World globalWorld;
5
6 override void OnInit(World world)
7 {
8 globalWorld = world;
9 }
10
11 static World GetWorld()
12 {
13 return globalWorld;
14 }
15}
Definition World.c:16