potluck-robotics / sdl-astar

MIT License
1 stars 0 forks source link

Create a Cell Class. #7

Closed seongyooncho closed 11 months ago

seongyooncho commented 11 months ago

Now, the grid is an aggregation of Celltype which only represents a type of the cell. To put data like f values into the grid, we need to create a Cell class as follows:

class Cell {
    Celltype type,
    float f,
}