mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 09:07:43 +00:00
All MP1 element decls in
This commit is contained in:
@@ -1,11 +1,51 @@
|
||||
#ifndef __RETRO_CCOLORELEMENT_HPP__
|
||||
#define __RETRO_CCOLORELEMENT_HPP__
|
||||
|
||||
#include "IElement.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
|
||||
class CColorElement
|
||||
class CCEKeyframeEmitter : public CColorElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, Zeus::CColor& colorOut) const;
|
||||
};
|
||||
|
||||
class CCEConstant : public CColorElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, Zeus::CColor& colorOut) const;
|
||||
};
|
||||
|
||||
class CCEFastConstant : public CColorElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, Zeus::CColor& colorOut) const;
|
||||
};
|
||||
|
||||
class CCETimeChain : public CColorElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, Zeus::CColor& colorOut) const;
|
||||
};
|
||||
|
||||
class CCEFadeEnd : public CColorElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, Zeus::CColor& colorOut) const;
|
||||
};
|
||||
|
||||
class CCEFade : public CColorElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, Zeus::CColor& colorOut) const;
|
||||
};
|
||||
|
||||
class CCEPulse : public CColorElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, Zeus::CColor& colorOut) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user