' Allows the creation of a sprite given a Bitmap object and a
' number of frames. The bitmap is assumed to be divided up into
' (frames) evenly- sized sections horizontally, with each
' section consituting a single frame of the animation.
Public Sub New(ByVal device As Device, ByVal image As String, ByVal frames As Integer)
Me.New(device, new Bitmap(image), frames)
End Sub
or similar