GuideBasic.cs 233 B

123456789101112131415
  1. namespace GameLogic.Combat.CombatGuide
  2. {
  3. public class GuideBasic
  4. {
  5. public void Update()
  6. {
  7. ProUpdate();
  8. }
  9. protected virtual void ProUpdate()
  10. {
  11. }
  12. }
  13. }