A nice description of how to design a game using an entity framework:
Elk Lake
On the way back to the ferries, we took Schrody and Stanley for a walk around Elk Lake on Vancouver Island.

Cougar’s Crag
Agile & Scrum Training
Insert copyright macro for VisualStudio
Here’s a useful macro for inserting copyrights into source code in Visual Studio.
Sub Copyright()
' Insert copyright
DTE.ActiveDocument.Selection.StartOfDocument()
DTE.ActiveDocument.Selection.Text = "// (c) Brad Reimer. All Rights Reserved."
DTE.ActiveDocument.Selection.NewLine()
' Remove old copyright
DTE.ActiveDocument.Selection.EndOfLine(True)
If DTE.ActiveDocument.Selection.Text.StartsWith("// (c)") Then
DTE.ActiveDocument.Selection.Delete(2)
End If
' Insert newline before usings
DTE.ActiveDocument.Selection.EndOfLine(True)
If DTE.ActiveDocument.Selection.Text.StartsWith("using") Or DTE.ActiveDocument.Selection.Text.StartsWith("#include") Then
DTE.ActiveDocument.Selection.StartOfLine(vsStartOfLineOptions.vsStartOfLineOptionsFirstText)
DTE.ActiveDocument.Selection.NewLine()
End If
End Sub

















