IPB

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> An idea
Whistler
post Feb 28 2004, 01:53 AM
Post #1


Newbie
*

Group: Members
Posts: 8
Joined: 25-February 04
Member No.: 257



Using classes for each MOD may be nice smile.gif

i.e., don't use this:
CODE

if (mod_id == VALVE_DLL)
{
 ...something
}
else if (mod_id == NS_DLL)
{
... something
}

use this instead:
class CBaseBot
{
public:
virtual DoOperations();
}

class CBotValve : CBaseBot
{
...
}

class CBotNS : CBaseBot
{
...
}

CBotValue::DoOperations()
{
...something
}

CBotNS::DoOperations()
{
..some other things
}
[/code]
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Cheeseh
post Feb 28 2004, 11:37 AM
Post #2


Admin
*****

Group: Admin
Posts: 3,055
Joined: 11-September 03
From: uk
Member No.: 1



yes I know but its too late now blink.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

Reply to this topicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 28th March 2024 - 11:46 AM