19 lines
320 B
C#
Executable File
19 lines
320 B
C#
Executable File
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace ET
|
|
{
|
|
public class UnitSkill
|
|
{
|
|
public static UnitSkill Null = null;
|
|
public int Id;
|
|
|
|
public int Level;
|
|
|
|
public bool IsPassive;
|
|
|
|
}
|
|
}
|