mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-17 18:10:57 +00:00
961a6fe211
# Conflicts: # wadsrc/static/zscript.txt
11 lines
136 B
Text
11 lines
136 B
Text
class Decal : Actor
|
|
{
|
|
native void SpawnDecal();
|
|
|
|
override void BeginPlay()
|
|
{
|
|
Super.BeginPlay();
|
|
SpawnDecal();
|
|
Destroy();
|
|
}
|
|
}
|