![]() |
|
#2
|
|||
|
|||
|
The only difference between single missions and campaigns is
Normal mission (single or multiplayer) Code:
using System;
using System.Collections;
using System.Collections.Generic;
using maddox.game;
using maddox.game.world;
public class Mission : AMission
{
// your code here
}
Code:
//$reference Campaign.dll
using System;
using System.Collections;
using System.Collections.Generic;
using maddox.game;
using maddox.game.world;
public class Mission : maddox.game.campaign.Mission
{
// your code here
}
Last edited by FG28_Kodiak; 02-04-2012 at 02:35 PM. |
|
|