<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Innovative Games</title>
	<atom:link href="http://www.innovativegames.net/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.innovativegames.net/blog</link>
	<description>Independent game development blog by Sean James</description>
	<lastBuildDate>Sun, 07 Mar 2010 09:14:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Correction: Component &#8220;Parent&#8221; Set Accessor by mnn</title>
		<link>http://www.innovativegames.net/blog/2010/01/03/correction-component-parent-set-accessor/comment-page-1/#comment-7632</link>
		<dc:creator>mnn</dc:creator>
		<pubDate>Sun, 07 Mar 2010 09:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativegames.net/blog/?p=593#comment-7632</guid>
		<description>Why I have such feeling that this the Parent property is the same as in the GameScreen article :D</description>
		<content:encoded><![CDATA[<p>Why I have such feeling that this the Parent property is the same as in the GameScreen article <img src='http://www.innovativegames.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Game Engine Tutorial Part IV, Section 2 &#8211; Sprite by Joe</title>
		<link>http://www.innovativegames.net/blog/2010/02/09/game-engine-tutorial-part-iv-section-2-sprite/comment-page-1/#comment-7622</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 06 Mar 2010 18:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativegames.net/blog/?p=601#comment-7622</guid>
		<description>Wow. Nevermind, I found the error. It was on the GameScreen.cs. I never added Component.LoadComponent(); to the GameScreen.cs.</description>
		<content:encoded><![CDATA[<p>Wow. Nevermind, I found the error. It was on the GameScreen.cs. I never added Component.LoadComponent(); to the GameScreen.cs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Game Engine Tutorial Part IV, Section 2 &#8211; Sprite by Joe</title>
		<link>http://www.innovativegames.net/blog/2010/02/09/game-engine-tutorial-part-iv-section-2-sprite/comment-page-1/#comment-7621</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 06 Mar 2010 17:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativegames.net/blog/?p=601#comment-7621</guid>
		<description>Hey guys, I suck at programming in c# and am learning everything I can from these tutorials. I have learned so much already, except how to handle these null reference exceptions. The error I am getting right now is pointing me to the sprite.cs:
&quot;Parent.Engine.SpriteBatch.Draw(spriteTexture, position, Color.White);&quot;

I know that the error is somewhere else, but I cannot find where! Help please.</description>
		<content:encoded><![CDATA[<p>Hey guys, I suck at programming in c# and am learning everything I can from these tutorials. I have learned so much already, except how to handle these null reference exceptions. The error I am getting right now is pointing me to the sprite.cs:<br />
&#8220;Parent.Engine.SpriteBatch.Draw(spriteTexture, position, Color.White);&#8221;</p>
<p>I know that the error is somewhere else, but I cannot find where! Help please.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Innovation Engine Roadmap 2009-2010 by AdamWTF</title>
		<link>http://www.innovativegames.net/blog/2009/10/18/innovation-engine-roadmap-2009-2010/comment-page-1/#comment-7557</link>
		<dc:creator>AdamWTF</dc:creator>
		<pubDate>Tue, 02 Mar 2010 01:51:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativegames.net/blog/?p=479#comment-7557</guid>
		<description>Gotta admit man these tutorials look pretty sweet. I can&#039;t wait till you can get some more done and online that&#039;s for sure. Thanks a lot for helping people out and good luck with it all.</description>
		<content:encoded><![CDATA[<p>Gotta admit man these tutorials look pretty sweet. I can&#8217;t wait till you can get some more done and online that&#8217;s for sure. Thanks a lot for helping people out and good luck with it all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Game Engine Tutorial Part III, Chapter 2 &#8211; GameScreen by tj</title>
		<link>http://www.innovativegames.net/blog/2009/10/20/game-engine-tutorial-part-iii-chapter-2-gamescreen/comment-page-1/#comment-7541</link>
		<dc:creator>tj</dc:creator>
		<pubDate>Sun, 28 Feb 2010 23:00:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativegames.net/blog/?p=514#comment-7541</guid>
		<description>my main problem is that in the code for the gamescreen, when it involves the
&#039;Parent.RemoveComponent(this);&#039;

and the:

parent.AddComponent(this)


I get an error message for the following:
Error	1	The best overloaded method match for &#039;GamenoviceEngine.GameScreen.RemoveComponent(string)&#039; has some invalid arguments	line 77 column 25

Error	2	Argument &#039;1&#039;: cannot convert from &#039;GamenoviceEngine.GameScreen&#039; to &#039;string&#039; line 77 column 48	


Error	3	The best overloaded method match for &#039;GamenoviceEngine.GameScreen.AddComponent(GamenoviceEngine.Component)&#039; has some invalid arguments	line 82 column 25


Error	4	Argument &#039;1&#039;: cannot convert from &#039;GamenoviceEngine.GameScreen&#039; to &#039;GamenoviceEngine.Component&#039; line 82 column 45</description>
		<content:encoded><![CDATA[<p>my main problem is that in the code for the gamescreen, when it involves the<br />
&#8216;Parent.RemoveComponent(this);&#8217;</p>
<p>and the:</p>
<p>parent.AddComponent(this)</p>
<p>I get an error message for the following:<br />
Error	1	The best overloaded method match for &#8216;GamenoviceEngine.GameScreen.RemoveComponent(string)&#8217; has some invalid arguments	line 77 column 25</p>
<p>Error	2	Argument &#8216;1&#8242;: cannot convert from &#8216;GamenoviceEngine.GameScreen&#8217; to &#8217;string&#8217; line 77 column 48	</p>
<p>Error	3	The best overloaded method match for &#8216;GamenoviceEngine.GameScreen.AddComponent(GamenoviceEngine.Component)&#8217; has some invalid arguments	line 82 column 25</p>
<p>Error	4	Argument &#8216;1&#8242;: cannot convert from &#8216;GamenoviceEngine.GameScreen&#8217; to &#8216;GamenoviceEngine.Component&#8217; line 82 column 45</p>
]]></content:encoded>
	</item>
</channel>
</rss>
