aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/animator/SkHitTest.h
blob: eb9ea4e97152f5d4f76b286d540ae2bb55be0ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

/*
 * Copyright 2006 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */


#ifndef SkHitTest_DEFINED
#define SkHitTest_DEFINED

#include "SkADrawable.h"
#include "SkTypedArray.h"

class SkHitTest : public SkADrawable {
    DECLARE_MEMBER_INFO(HitTest);
    SkHitTest();
    virtual bool draw(SkAnimateMaker& ) SK_OVERRIDE;
    virtual bool enable(SkAnimateMaker& ) SK_OVERRIDE;
    virtual bool hasEnable() const SK_OVERRIDE;
    virtual const SkMemberInfo* preferredChild(SkDisplayTypes type) SK_OVERRIDE;
private:
    SkTDDisplayableArray bullets;
    SkTDIntArray hits;
    SkTDDisplayableArray targets;
    SkBool value;
};

#endif // SkHitTest_DEFINED