0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom.git synced 2025-03-09 19:01:09 +00:00
qzdoom/wadsrc/static/zscript/actors/shared/decal.zs

11 lines
136 B
Text

class Decal : Actor
{
native void SpawnDecal();
override void BeginPlay()
{
Super.BeginPlay();
SpawnDecal();
Destroy();
}
}