Advertisement
PlinioJRM

WaveGenerationRule

Nov 1st, 2024
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using PlinioJRM.Entities;
  2. using UnityEngine;
  3.  
  4. namespace PlinioJRM.Systems.Waves {
  5.     [CreateAssetMenu(fileName = "Generation Rule", menuName = "Rules/Wave Generation")]
  6.     public class WaveGenerationRule : ScriptableObject {
  7.         public                 EnemyType enemyType;
  8.         [Range(0, 100)] public int       chance;
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement