22 lines
403 B
C#
22 lines
403 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BallanceStalkerCore {
|
|
|
|
public class StalkerManager {
|
|
public static StalkerManager Singleton = new StalkerManager();
|
|
private StalkerManager() {
|
|
|
|
}
|
|
|
|
public BmmoClient mBmmoClient;
|
|
public LogManager mLogger;
|
|
|
|
}
|
|
|
|
}
|