Mizar999 / godot-roguelike

A coffee-break roguelike made with Godot game engine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create actors & scheduler

Mizar999 opened this issue · comments

commented
  • Create an actor class as base class for the player and all enemies
  • Create an action class and add a movement action
  • Implement a basic scheduler
    • Fetches all actors in a scene
    • Receives an action from each actor in order of a list of actors
    • Executes the received actions
  • Implement basic player movement