class myClass
{
int x, y;
void someFunc()
{
x = 1;
y = 2;
}
}
rather than
class myClass
{
int x, y;
void someFunc()
{
this.x = 1;
this.y = 2;
}
}
especially since the game will be entirely class based.
class myClass
{
int x, y;
void someFunc()
{
x = 1;
y = 2;
}
}
rather than
class myClass
{
int x, y;
void someFunc()
{
this.x = 1;
this.y = 2;
}
}
especially since the game will be entirely class based.
AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game