mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-08 19:15:51 +00:00
Forgot something....
This commit is contained in:
parent
4614b90282
commit
19c1aa3ae1
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