mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-11 20:19:08 +00:00
Forgot something....
Former-commit-id: 19c1aa3ae1fe0502fb9d25d64684b7e3835f2222
This commit is contained in:
parent
ecac640472
commit
477189a490
16
include/Kyoto/Particles/CWarp.hpp
Normal file
16
include/Kyoto/Particles/CWarp.hpp
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#ifndef __CWARP_HPP__
|
||||||
|
#define __CWARP_HPP__
|
||||||
|
|
||||||
|
#include "rstl/vector.hpp"
|
||||||
|
class CParticle;
|
||||||
|
class CWarp {
|
||||||
|
public:
|
||||||
|
virtual ~CWarp();
|
||||||
|
virtual bool UpdateWarp() = 0;
|
||||||
|
virtual void ModifyParticles(const rstl::vector<CParticle>& particles) = 0;
|
||||||
|
virtual void Activate(bool) = 0;
|
||||||
|
virtual bool IsActivated() =0;
|
||||||
|
virtual int Get4CharID() = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // __CWARP_HPP__
|
3
src/Kyoto/Particles/CWarp.cpp
Normal file
3
src/Kyoto/Particles/CWarp.cpp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#include "Kyoto/Particles/CWarp.hpp"
|
||||||
|
|
||||||
|
CWarp::~CWarp() {}
|
Loading…
x
Reference in New Issue
Block a user