Danmaku_no_Kyojin.BulletEngine.BulletMLAction.BulletMLAction C# (CSharp) Method

BulletMLAction() public method

Initializes a new instance of the BulletMLLib.BulletMLAction class.
public BulletMLAction ( int repeatNumMax, BulletMLNode node, BulletMLTask owner ) : System.Diagnostics
repeatNumMax int Repeat number max.
node BulletMLNode Node.
owner BulletMLTask Owner.
return System.Diagnostics
        public BulletMLAction(int repeatNumMax, BulletMLNode node, BulletMLTask owner)
            : base(node, owner)
        {
            Debug.Assert(null != Node);
            Debug.Assert(null != Owner);
            this.RepeatNumMax = repeatNumMax;
        }