aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/MissionAttribute.cs
blob: 4a0750cbada43674a3385baeb407baaf35fd0d25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ShiftOS.Engine
{
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
    public class MissionAttribute : StoryAttribute
    {
        public MissionAttribute(string id, string friendlyName, string friendlyDesc, ulong codepointAward, string assigner) : base(id)
        {
            Name = friendlyName;
            Description = friendlyDesc;
            CodepointAward = codepointAward;
            Assigner = assigner;
        }

        public string Name { get; private set; }
        public string Description { get; private set; }
        public string Assigner { get; set; }
    }
}