mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
a5ee673c91
Its one function is still native but this was by far the easiest of the remaining actor classes to export.
11 lines
136 B
Text
11 lines
136 B
Text
class Decal : Actor
|
|
{
|
|
native void SpawnDecal();
|
|
|
|
override void BeginPlay()
|
|
{
|
|
Super.BeginPlay();
|
|
SpawnDecal();
|
|
Destroy();
|
|
}
|
|
}
|