18 lines
291 B
C++
18 lines
291 B
C++
#pragma once
|
|
|
|
#include "ASMTItem.h"
|
|
|
|
namespace MbD {
|
|
class ASMTAnimationParameters : public ASMTItem
|
|
{
|
|
//
|
|
public:
|
|
void parseASMT(std::vector<std::string>& lines) override;
|
|
|
|
int nframe, icurrent, istart, iend, framesPerSecond;
|
|
bool isForward;
|
|
|
|
};
|
|
}
|
|
|