Brixpath::Brixpath(){
{ _animationOptions = (AnimationOptions){5, 3, 40, 30};
};
このコード ブロックを実行すると、VS でエラーが発生します
タイプ名は AnimationOptions では許可されていません。
タイプ名を削除すると
Brixpath::Brixpath(){
{ _animationOptions = {5, 3, 40, 30};
};
VS2010は、2行目の最初の「{」でエラーを出します
エラー: 式が必要です
アニメーション オプションの定義は次のとおりです。
struct AnimationOptions {
int maxClicks; //how many clicks animation on screen to support
int step; // animation speed, 3 pixels per time
int limit; //width of animation rectangle. if more, rectangle dissapears
int distance; //minimum distance between previous click and current
};
このエラーを解決するにはどうすればよいですか? 助けてください。