Advertisement
Eresor

Untitled

Oct 8th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. public class Game : MonoBehaviour
  2. {
  3.     public float EnemySpeed = 1.0f;
  4.     public float HeroSpeed = 1.0f;
  5.     public int ParticleSmokeCount = 15;
  6.     public int NextEnemyCount = 12f;
  7.     public float MaxHeroHealth  100f;
  8.     public float HeroHealth = 100f;
  9.     public Enemy[] Enemies;
  10.     ...
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement