From 8c2194c90304f5b705f86013c2808ffb177bab5a Mon Sep 17 00:00:00 2001 From: Alli Date: Sat, 19 Dec 2009 23:36:49 +1300 Subject: [PATCH] Forgot Fake.cs and project file --- OpenRa.Game/OpenRa.Game.csproj | 3 ++- OpenRa.Game/Traits/Fake.cs | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 OpenRa.Game/Traits/Fake.cs diff --git a/OpenRa.Game/OpenRa.Game.csproj b/OpenRa.Game/OpenRa.Game.csproj index 044d6542c6..d04f047518 100644 --- a/OpenRa.Game/OpenRa.Game.csproj +++ b/OpenRa.Game/OpenRa.Game.csproj @@ -2,7 +2,7 @@ Debug AnyCPU - 9.0.21022 + 9.0.30729 2.0 {0DFB103F-2962-400F-8C6D-E2C28CCBA633} WinExe @@ -166,6 +166,7 @@ + diff --git a/OpenRa.Game/Traits/Fake.cs b/OpenRa.Game/Traits/Fake.cs new file mode 100644 index 0000000000..ce76ff2d8a --- /dev/null +++ b/OpenRa.Game/Traits/Fake.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace OpenRa.Game.Traits +{ + class Fake + { + + public Fake(Actor self){} + + } +}