zxmskdo憎らしい朝が来た

User Name ーー READ ME

local your_s = require "your_smile" --番外編の予定地
local my_p = require "my_precious" --IFの予定地

Feeling = { }
Feeling.new = function( )
 local fact = { }
 fact.mine = nil
 fact.yours = nil
 fact.morning = false
 fact.night = true
 fact.sync = nil

 fact.update = function(self)
 end

 fact.draw = function(self)
 end

 return fact
end

function love.load( )
 feeling = Feeling.new( )
end

function love.update(dt)
 feeling:update( ) ...
end

function love.draw( )
 love.graphics.image("xxx", 6, 6)
 feeling:draw( ) ...
end
back to top