<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8635366697734028515</id><updated>2011-11-27T19:59:54.474-04:00</updated><category term='Flight'/><category term='Finals'/><category term='Joystick'/><category term='XNA'/><title type='text'>Sam's Xna Blog</title><subtitle type='html'>This is a blog about my journey through C#, XNA, and any other computer graphics things that I do.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-8858556817522756795</id><published>2008-01-24T23:06:00.000-04:00</published><updated>2008-01-24T23:15:47.714-04:00</updated><title type='text'>MOGRE</title><content type='html'>Well, it has been some time since I have posted here and the main reason is going back to school. But one thing I have discovered is a little C# Game programming thing called. &lt;a href="http://www.ogre3d.org/wiki/index.php/MOGRE"&gt;MOGRE&lt;span style="font-size:100%;"&gt; .&lt;/span&gt;&lt;/a&gt;&lt;br /&gt; Mogre is a .Net graphics engine. Based on OGRE, the name is for Managed-Ogre. I found this very cool and promising. Besides have amazing graphics capabilities it is as easy as XNA if not easier. It also comes with extra add-ons like physics etc. Since Also I am an Windows only xna developer this seems very promising. This may end up replacing my primary platform for Game Development instead of XNA. But most likely the two will probably be put together to work on projects. If anybody has any experience with MOGRE please do comment and let me know your opinion. &lt;br /&gt;&lt;br /&gt;P.S. As far as the plane game goes I'm thinking that &lt;span style="font-weight: bold; font-style: italic;"&gt;may&lt;/span&gt; (As in this is not official) be put to death. Simply because I'm busy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-8858556817522756795?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/8858556817522756795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=8858556817522756795' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/8858556817522756795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/8858556817522756795'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2008/01/mogre.html' title='MOGRE'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-4641290228264423762</id><published>2008-01-05T12:51:00.000-04:00</published><updated>2008-01-05T13:34:46.722-04:00</updated><title type='text'>Audio Tutorial</title><content type='html'>When dealing with audio in XNA, Xact can be very frustrating so I've decided to write up a &lt;strong&gt;&lt;em&gt;VERY &lt;/em&gt;&lt;/strong&gt;short audio tutorial for &lt;strong&gt;&lt;em&gt;Windows &lt;/em&gt;&lt;/strong&gt;only. It can handle any audio file that Windows Media Player (WMP) can handle. Such file types are WMA, WAV, MP3, AVI, MIDI, AU, AIFF, and ASF. Why Windows Media Player you may be asking. Well that is what we will be using to play our audio files. I chose this because most people have it installed and it supports quite a few file types. And the best part is it takes only two lines of code to initialize. And one to play the file.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;First start a new XNA project and go over to your left on the solution explorer and open up the references tab. Then right click the reference tab and click add reference. Then click and the COM tab. Scroll down to the bottom and click on Windows Media Player. Then press OK. On the right under the references tab you should see WMPLib. Then under the Content Folder add a new one to hold audio files. Mine will simply be called "Audio". Then right click that folder and click Add Existing Item. Then find whatever audio file that fits one of the formats above. I chose an mp3 called Mortal Combat Techno theme. (Odd I know but it makes pumping background music in a game.) Next click on it and go to the properties window. ( View Properties Window) Then change build action to None, and copy to output directory as copy if newer.&lt;br /&gt;&lt;br /&gt;Now for the coding. That first section set up the project now to make it happen. Add the following line of code right above the game1 method.&lt;br /&gt;&lt;br /&gt;//Our class refferal&lt;br /&gt;WMPLib.&lt;span style="color:#66ffff;"&gt;WindowsMediaPlayerClass&lt;/span&gt; Sound_Player;&lt;br /&gt;&lt;br /&gt;Now in the initialize method add these lines of code.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//create an instance of the class&lt;br /&gt;Sound_Player = new WMPLib.WindowsMediaPlayerClass();&lt;br /&gt;//Play the File Make sure to replace the URL with whatever your file is&lt;br /&gt;Sound_Player.IWMPPlayer_URL = "Content/Audio/Mortal Combat Techno Theme.mp3";&lt;br /&gt;&lt;br /&gt;And that is it if you did everything correctly your audio file should be playing. Also Inside the WindowsMediaPlayerClass you will find &lt;strong&gt;&lt;em&gt;MANY &lt;/em&gt;&lt;/strong&gt;more advanced options for audio. And as always Happy Coding!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-4641290228264423762?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/4641290228264423762/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=4641290228264423762' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/4641290228264423762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/4641290228264423762'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2008/01/audio-tutorial.html' title='Audio Tutorial'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-8794124835612221539</id><published>2008-01-01T11:04:00.000-04:00</published><updated>2008-01-01T11:06:47.437-04:00</updated><title type='text'>Happy New Years</title><content type='html'>Well first post I've made here in a while simply because the Holidays are a very busy time. Nevertheless the plane game is still on hold because I think I've realized that I just didn't know enough about XNA... yet. I've been taking tutorials... but I still don't know when I will have a version uploaded. Oh Well. And as always Happy Coding!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-8794124835612221539?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/8794124835612221539/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=8794124835612221539' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/8794124835612221539'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/8794124835612221539'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2008/01/happy-new-years.html' title='Happy New Years'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-3951559954005001699</id><published>2007-12-22T21:24:00.000-04:00</published><updated>2007-12-22T21:25:54.671-04:00</updated><title type='text'>No News...</title><content type='html'>Still really no news... But just a quick update on the game. I'm currently implementing the terrain system and It's coming along quite nicely! Anyways I'm still planning on having the first update avaible on Monday.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-3951559954005001699?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/3951559954005001699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=3951559954005001699' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/3951559954005001699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/3951559954005001699'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2007/12/no-news.html' title='No News...'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-5813886209570402773</id><published>2007-12-18T21:19:00.000-04:00</published><updated>2007-12-18T21:22:52.851-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Finals'/><category scheme='http://www.blogger.com/atom/ns#' term='XNA'/><category scheme='http://www.blogger.com/atom/ns#' term='Flight'/><category scheme='http://www.blogger.com/atom/ns#' term='Joystick'/><title type='text'>Well Today...</title><content type='html'>As I said before today was mainly finals and studying for tomorrows finals. But there is some good news, I got to work on the game for at least a little bit... Still hoping for a sample release on Monday, But we will have to see. I've also decided that once it is over I will be giving some quick ideas on how to implement flight in XNA. Then I also remembered I will absolutely need Joystick support.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-5813886209570402773?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/5813886209570402773/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=5813886209570402773' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/5813886209570402773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/5813886209570402773'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2007/12/well-today.html' title='Well Today...'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-521747306454320169</id><published>2007-12-17T09:37:00.000-04:00</published><updated>2007-12-17T09:44:47.412-04:00</updated><title type='text'>Finals... Ughhh</title><content type='html'>Well this week is finals week at school so it will be very slow here. But after that my mind will be free to wander through my game... (It's a joke OK? I'm not that obsessed) Anyways As of right now you can just fly the plane around a blank 3d world with no terrain or anything.  So before I have a sample uploaded I want the following.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;A terrain (Just a Basic one)&lt;/li&gt;&lt;li&gt;A propeller (Spinning, maybe not motion blur in the 1st release though)&lt;/li&gt;&lt;li&gt;Physics (I've already read about 20 pages on aircraft physics and how to put them in games so I'm feeling confident here)&lt;/li&gt;&lt;li&gt;Simple AI (At least one that follows you and shoots. Even though the final one will be much better.)&lt;/li&gt;&lt;li&gt;Basic Bullets (Ones that hit the plane and then it and the enemy plane disappear.)&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;        Well I think that will be about it for version 0.1 In future releases I want the whole thing. Exploding planes, motion, decent graphics. How long that will be I have no idea. version 0.1 though I'd say 3-4 days past finals. (So about a week or a little bit more.) And as always happy coding!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-521747306454320169?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/521747306454320169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=521747306454320169' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/521747306454320169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/521747306454320169'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2007/12/finals-ughhh.html' title='Finals... Ughhh'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-9143537976082044545</id><published>2007-12-15T23:26:00.000-04:00</published><updated>2008-12-10T02:48:41.976-04:00</updated><title type='text'>Plane Game</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_-PdEN6Qbfpo/R2ScCv_ZMOI/AAAAAAAAAAM/bhIWFeI7AY0/s1600-h/Plane_Image.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_-PdEN6Qbfpo/R2ScCv_ZMOI/AAAAAAAAAAM/bhIWFeI7AY0/s320/Plane_Image.png" alt="" id="BLOGGER_PHOTO_ID_5144408245419978978" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=";font-family:&amp;quot;;font-size:12;"  &gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" spt="75" preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;  &lt;v:stroke joinstyle="miter"&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;   &lt;v:f eqn="sum @0 1 0"&gt;   &lt;v:f eqn="sum 0 0 @1"&gt;   &lt;v:f eqn="prod @2 1 2"&gt;   &lt;v:f eqn="prod @3 21600 pixelWidth"&gt;   &lt;v:f eqn="prod @3 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @0 0 1"&gt;   &lt;v:f eqn="prod @6 1 2"&gt;   &lt;v:f eqn="prod @7 21600 pixelWidth"&gt;   &lt;v:f eqn="sum @8 21600 0"&gt;   &lt;v:f eqn="prod @7 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @10 21600 0"&gt;  &lt;/v:formulas&gt;  &lt;v:path extrusionok="f" gradientshapeok="t" connecttype="rect"&gt;  &lt;o:lock ext="edit" aspectratio="t"&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_i1025" type="#_x0000_t75" style="'width:126pt;"&gt;  &lt;v:imagedata src="file:///C:\DOCUME~1\Sam\LOCALS~1\Temp\msohtml1\01\clip_image001.png" title="" croptop="11985f" cropbottom="25183f" cropleft="15582f" cropright="30796f"&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;Okay, I'm definitly going to work on some sort of dogfight plane game. The image on the left is my first render. There is no propeller yet and the plane can't even fly. But this is still what I will be working on. In the end I'm hoping for some sort of absolutely chaos 100 planes on the screen at once.. etc. Graphics are meant to be fairly good, yet not mind blowing. This game will be windows only as of I don't own an Xbox 360! This week is finals so I went get much done. But over the winter holiday a lot should happen. cheers! Happy Coding!&lt;br /&gt;&lt;br /&gt;Note: This game is not meant to be compared to sharky's air legends. The 2 aren't even comparable. I'm going at a totally different style of gameplay.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-9143537976082044545?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/9143537976082044545/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=9143537976082044545' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/9143537976082044545'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/9143537976082044545'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2007/12/plane-game.html' title='Plane Game'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_-PdEN6Qbfpo/R2ScCv_ZMOI/AAAAAAAAAAM/bhIWFeI7AY0/s72-c/Plane_Image.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-771179282650673593</id><published>2007-12-12T22:48:00.000-04:00</published><updated>2007-12-12T22:52:20.369-04:00</updated><title type='text'>Writing Tutorial</title><content type='html'>I think I am going to write a full fledged tutorial on making a game. It will cover sound, AI, graphics, game state etc. What I'm thinking right now is a shooter with hover crafts. Not sure if the view will be 1st or 3rd  person but I will see soon.  I probably will not be writing it until Winter Break though because of school.  Oh well happy Coding!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-771179282650673593?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/771179282650673593/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=771179282650673593' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/771179282650673593'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/771179282650673593'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2007/12/writing-tutorial.html' title='Writing Tutorial'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-2220660632305130379</id><published>2007-12-11T17:26:00.000-04:00</published><updated>2007-12-11T17:28:48.406-04:00</updated><title type='text'>Tutorials</title><content type='html'>No one forget the many tutorials out there for xna. like riemers and blue rose games can be found by googling. Then the doc's that come with xan gse are absolutely amazing. These cover topics like networking, sound, shadows, 3d programming and much more. Then take a look at the tutorials online. Another great resource for finding out how to do things is by looking at samples, starter kits, and even other games. Game Dev .net also can provide a good insight on many generally game programming things.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-2220660632305130379?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/2220660632305130379/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=2220660632305130379' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/2220660632305130379'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/2220660632305130379'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2007/12/tutorials.html' title='Tutorials'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8635366697734028515.post-3079290548137097722</id><published>2007-12-10T23:12:00.000-04:00</published><updated>2007-12-10T23:13:25.399-04:00</updated><title type='text'>First Post!</title><content type='html'>This will be my first post here on my blog! I will try to keep it conformed to xna, c# etc. But I may also wander. LOL. Anyways I hope you all will be hearing from me soon!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8635366697734028515-3079290548137097722?l=firewater49.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://firewater49.blogspot.com/feeds/3079290548137097722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8635366697734028515&amp;postID=3079290548137097722' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/3079290548137097722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8635366697734028515/posts/default/3079290548137097722'/><link rel='alternate' type='text/html' href='http://firewater49.blogspot.com/2007/12/first-post.html' title='First Post!'/><author><name>Firewater49</name><uri>http://www.blogger.com/profile/02651759130725590027</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
