Initial commit: ROW Client source code
Game client codebase including: - CharacterActionControl: Character and creature management - GlobalScript: Network, items, skills, quests, utilities - RYLClient: Main client application with GUI and event handlers - Engine: 3D rendering engine (RYLGL) - MemoryManager: Custom memory allocation - Library: Third-party dependencies (DirectX, boost, etc.) - Tools: Development utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
26
Engine/Zalla3D Scene Class/ScatterParticle.h
Normal file
26
Engine/Zalla3D Scene Class/ScatterParticle.h
Normal file
@@ -0,0 +1,26 @@
|
||||
// ScatterParticle.h: interface for the CScatterParticle class.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#if !defined(AFX_SCATTERPARTICLE_H__030425F7_475B_4AE0_B584_4E6235AD84F9__INCLUDED_)
|
||||
#define AFX_SCATTERPARTICLE_H__030425F7_475B_4AE0_B584_4E6235AD84F9__INCLUDED_
|
||||
|
||||
#if _MSC_VER > 1000
|
||||
#pragma once
|
||||
#endif // _MSC_VER > 1000
|
||||
|
||||
#include "Particle.h"
|
||||
|
||||
class CScatterParticle : public CParticle
|
||||
{
|
||||
bool m_bGravity;
|
||||
public:
|
||||
void Create(vector3 vecPos);
|
||||
void SetGravity(bool bGravity){m_bGravity=bGravity;};
|
||||
bool Update(float fUpdateTime);
|
||||
CScatterParticle();
|
||||
virtual ~CScatterParticle();
|
||||
|
||||
};
|
||||
|
||||
#endif // !defined(AFX_SCATTERPARTICLE_H__030425F7_475B_4AE0_B584_4E6235AD84F9__INCLUDED_)
|
||||
Reference in New Issue
Block a user