diff options
| author | realtradam <[email protected]> | 2021-12-19 20:17:11 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2021-12-19 20:17:11 -0500 |
| commit | 6437b020ee60a1c80a06db638c713a8f1e9a3d2f (patch) | |
| tree | 16fca9b7316c3c18733af4d2dc544ec8a0d8afe9 /app/components/teams | |
| parent | cd3d7be54f16263ceaa9b5e0e8a1c219821e8339 (diff) | |
| download | SteelWings-6437b020ee60a1c80a06db638c713a8f1e9a3d2f.tar.gz SteelWings-6437b020ee60a1c80a06db638c713a8f1e9a3d2f.zip | |
Updated singleton naming
Diffstat (limited to 'app/components/teams')
| -rw-r--r-- | app/components/teams/enemy_team.rb | 1 | ||||
| -rw-r--r-- | app/components/teams/player_team.rb | 1 | ||||
| -rw-r--r-- | app/components/teams/singleton_enemy_team.rb | 3 | ||||
| -rw-r--r-- | app/components/teams/singleton_player_team.rb | 3 |
4 files changed, 6 insertions, 2 deletions
diff --git a/app/components/teams/enemy_team.rb b/app/components/teams/enemy_team.rb deleted file mode 100644 index 9d4e0d1..0000000 --- a/app/components/teams/enemy_team.rb +++ /dev/null @@ -1 +0,0 @@ -FF::Cmp.new('EnemyTeam') diff --git a/app/components/teams/player_team.rb b/app/components/teams/player_team.rb deleted file mode 100644 index 6e1b126..0000000 --- a/app/components/teams/player_team.rb +++ /dev/null @@ -1 +0,0 @@ -FF::Cmp.new('PlayerTeam') diff --git a/app/components/teams/singleton_enemy_team.rb b/app/components/teams/singleton_enemy_team.rb new file mode 100644 index 0000000..262d809 --- /dev/null +++ b/app/components/teams/singleton_enemy_team.rb @@ -0,0 +1,3 @@ +FF::Cmp.new('SingletonEnemyTeam', + singleton: true) +FF::Cmp::SingletonEnemyTeam.new diff --git a/app/components/teams/singleton_player_team.rb b/app/components/teams/singleton_player_team.rb new file mode 100644 index 0000000..22c68ee --- /dev/null +++ b/app/components/teams/singleton_player_team.rb @@ -0,0 +1,3 @@ +FF::Cmp.new('SingletonPlayerTeam', + singleton: true) +FF::Cmp::SingletonPlayerTeam.new |
