mirror of
https://github.com/tym1116/BH3.git
synced 2026-02-04 17:02:10 +01:00
28 lines
500 B
C#
28 lines
500 B
C#
using System;
|
|
|
|
namespace MoleMole.MainMenu
|
|
{
|
|
[Serializable]
|
|
public class CloudScene
|
|
{
|
|
public string Name;
|
|
|
|
public CloudType[] CloudTypes;
|
|
|
|
public CompoundCloudType[] CompoundCloudTypes;
|
|
|
|
public LayerCloudType[] LayerCloudTypes;
|
|
|
|
public LightningType[] LightningTypes;
|
|
|
|
public void Init(CloudEmitter cloudEmitter)
|
|
{
|
|
LightningType[] lightningTypes = LightningTypes;
|
|
foreach (LightningType lightningType in lightningTypes)
|
|
{
|
|
lightningType.Init(cloudEmitter);
|
|
}
|
|
}
|
|
}
|
|
}
|