I've been having a problem declaring LevelSet and Level. I have read up on one of the other posts, and could not seem to find a solution.
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
using Starbound.RealmFactoryCore;
namespace RealmFactoryTutorial
{
private LevelSet levelSet;
private Level currentLevel;
}
Here is my declaration for it. The error I'm getting is "Expected class, delegate, enum, interface, or struct"
Any help would be appreciated.