Removed unused battle class

This commit is contained in:
nilllzz 2016-09-22 23:21:56 +02:00
parent 1e7e2d0413
commit 6ff826cb44
2 changed files with 0 additions and 52 deletions

View File

@ -58,7 +58,6 @@
<Compile Include="Battle\BattleAnimations\BARotation.vb" />
<Compile Include="Battle\BattleAnimations\BASize.vb" />
<Compile Include="Battle\BattleAnimations\BattleAnimation3D.vb" />
<Compile Include="Battle\BattleAnimations\BattleAnimationController.vb" />
<Compile Include="Battle\BattleStats.vb" />
<Compile Include="Battle\BattleSystemV2\Battle.vb" />
<Compile Include="Battle\BattleSystemV2\BattleAnimationScreenV2.vb" />

View File

@ -1,51 +0,0 @@
Namespace BattleSystem
Public Class BattleAnimationController
Private _battleScreenInstance As BattleScreen
'Background:
Private _shaderColor As Color = Color.Black
Private _applyShader As Boolean = False
Public Sub New(ByVal BattleScreen As BattleScreen)
Me._battleScreenInstance = BattleScreen
End Sub
''' <summary>
''' Clears all effects from the screen.
''' </summary>
Public Sub ClearEffects()
Me.DeApplyShader()
End Sub
Public Sub Update()
End Sub
Public Sub Draw()
End Sub
#Region "Shader"
Public Sub ApplyShader(ByVal ShaderColor As Color)
Me._shaderColor = ShaderColor
Me._applyShader = True
End Sub
Public Sub DeApplyShader()
Me._applyShader = False
End Sub
#End Region
#Region "2DAnimations"
#End Region
End Class
End Namespace