NSView: Mark certain methods as virtual (where it currently makes sense)

This commit is contained in:
Marco Cawthorne 2023-04-09 11:34:50 -07:00
parent 66945575ae
commit 405fe1cfa9
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 6 additions and 6 deletions

View File

@ -45,18 +45,18 @@ public:
void NSView(void);
/** the only method we we want to call setproperty() */
nonvirtual void SetupView(void);
virtual void SetupView(void);
/** only does one thing: renderscene() */
nonvirtual void RenderView(void);
virtual void RenderView(void);
/** when called, will modify 'origin' to vertically smoothed when on ground */
nonvirtual void StairSmooth(void);
virtual void StairSmooth(void);
/** called every CSQC_UpdateView for each player */
virtual void UpdateView(void);
/** applies an punch to our camera angle, temporarily */
nonvirtual void AddPunchAngle(vector);
/** called every CSQC_UpdateView for each player */
nonvirtual void UpdateView(void);
/* set/get */
/** Sets the viewmode_t of the NSView. */