Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit de99f60

Browse files
committed
Fix spooky code change
1 parent 1fd43da commit de99f60

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Entities/MOSprite.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,14 +587,16 @@ ENTITYALLOCATION(MOSprite)
587587
virtual void SetSpriteAnimDuration(int newDuration) { m_SpriteAnimDuration = newDuration; }
588588

589589

590+
/*
590591
//////////////////////////////////////////////////////////////////////////////////////////
591592
// Virtual method: Update
592593
//////////////////////////////////////////////////////////////////////////////////////////
593594
// Description: Updates this MovableObject. Supposed to be done every frame.
594595
// Arguments: None.
595596
// Return value: None.
596597
597-
virtual void Update();
598+
virtual void Update() = 0;
599+
*/
598600

599601

600602
//////////////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)