Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created April 3, 2019 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/55973b46880e2f16891c740d9c120606 to your computer and use it in GitHub Desktop.
Save jasongorman/55973b46880e2f16891c740d9c120606 to your computer and use it in GitHub Desktop.
Option Explicit
Implements Room
Private mRadius As Double
Public Property Let Radius(ByVal value As Double)
mRadius = value
End Property
Public Function Room_Area() As Double
Room_Area = (mRadius * 2) * (mRadius * 2)
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment