foxygit / GZDoom Log in
commits tags

/wadsrc/static/zscript/actors/shared/decal.zs · 136 B

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