kaibochan

Cell.lua

Feb 22nd, 2025
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. local Cell = {
  2.     __name = "Cell",
  3.     bg_color = colors.black,
  4.     fg_color = colors.white,
  5.     character = " ",
  6. }
  7.  
  8. function Cell:new(o)
  9.     o = o or {}
  10.     setmetatable(o, self)
  11.     self.__index = self
  12.     return o
  13. end
  14.  
  15. function Cell:copy(other)
  16.     self.bg_color = other.bg_color
  17.     self.fg_color = other.fg_color
  18.     self.character = other.character
  19. end
  20.  
  21. return Cell
Add Comment
Please, Sign In to add comment