- Timestamp:
- 2013-07-02 15:00:32 (10 years ago)
- Location:
- 2013/27/TeemuM/Game
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
2013/27/TeemuM/Game/Game/Game/Enemies.cs
r4359 r4365 14 14 { 15 15 this.Shape = Shape.Circle; 16 createBrain1();17 }18 19 public void createBrain1()20 {21 FollowerBrain brain1 = new FollowerBrain("Player");22 brain1.Speed = 100;23 brain1.Active = true;24 Zombie1.Brain = brain1;25 16 26 17 } -
2013/27/TeemuM/Game/Game/Game/Game.cs
r4360 r4365 12 12 public Image playerImage = LoadImage("Player"); 13 13 14 Zombie1 zombie1; 15 14 16 public override void Begin() 15 17 { 18 19 20 Zombie1 zombie1 = new Zombie1(50, 50); 21 22 createBrain1(); 23 24 Add(zombie1); 25 16 26 game = this; 17 18 27 Player pelaaja = new Player(this, 50, 50); 28 pelaaja.Tag = "Player"; 19 29 Add(pelaaja); 20 30 21 31 ScoreMeter(); 22 32 23 PhoneBackButton.Listen(Exit, "Lopeta peli");24 33 Keyboard.Listen(Key.Escape, ButtonState.Pressed, Exit, "Lopeta peli"); 25 34 … … 27 36 } 28 37 38 39 public void createBrain1() 40 { 41 FollowerBrain brain1 = new FollowerBrain("Player"); 42 brain1.Speed = 100; 43 brain1.Active = true; 44 } 45 29 46 IntMeter scoreboard; 30 31 47 void ScoreMeter() 32 48 { -
2013/27/TeemuM/Game/Game/Game/Game.csproj
r4359 r4365 116 116 <Compile Include="Player.cs" /> 117 117 <Compile Include="Properties\AssemblyInfo.cs" /> 118 <Compile Include="UI.cs" /> 118 119 </ItemGroup> 119 120 <ItemGroup> -
2013/27/TeemuM/Game/Game/Game/obj/x86/Debug/ContentPipeline-{7DE21D26-C0FA-4B3B-93A6-C0EF7849F918}.xml
r4360 r4365 8 8 <Processor>TextureProcessor</Processor> 9 9 <Options>None</Options> 10 <Output>C:\MyTemp\ TeemuM\Game\Game\Game\bin\x86\Debug\Content\Player.xnb</Output>11 <Time>2013-07-02T1 4:25:17.1345571+03:00</Time>10 <Output>C:\MyTemp\jumakall\TeemuM\Game\Game\Game\bin\x86\Debug\Content\Player.xnb</Output> 11 <Time>2013-07-02T13:02:38.9536571+03:00</Time> 12 12 </Item> 13 13 <BuildSuccessful>true</BuildSuccessful> … … 18 18 <BuildConfiguration>Debug</BuildConfiguration> 19 19 <CompressContent>false</CompressContent> 20 <RootDirectory>C:\MyTemp\ TeemuM\Game\Game\GameContent\</RootDirectory>21 <LoggerRootDirectory>C:\MyTemp\ TeemuM\Game\Game\Game\</LoggerRootDirectory>22 <IntermediateDirectory>C:\MyTemp\ TeemuM\Game\Game\Game\obj\x86\Debug\</IntermediateDirectory>23 <OutputDirectory>C:\MyTemp\ TeemuM\Game\Game\Game\bin\x86\Debug\Content\</OutputDirectory>20 <RootDirectory>C:\MyTemp\jumakall\TeemuM\Game\Game\GameContent\</RootDirectory> 21 <LoggerRootDirectory>C:\MyTemp\jumakall\TeemuM\Game\Game\Game\</LoggerRootDirectory> 22 <IntermediateDirectory>C:\MyTemp\jumakall\TeemuM\Game\Game\Game\obj\x86\Debug\</IntermediateDirectory> 23 <OutputDirectory>C:\MyTemp\jumakall\TeemuM\Game\Game\Game\bin\x86\Debug\Content\</OutputDirectory> 24 24 </Settings> 25 25 <Assemblies> … … 58 58 <Assembly> 59 59 <Key>C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key> 60 <Value>2012-03-16T14:3 1:01.662955+02:00</Value>60 <Value>2012-03-16T14:32:40.8080137+02:00</Value> 61 61 </Assembly> 62 62 </Assemblies>
Note: See TracChangeset
for help on using the changeset viewer.