Rev 874 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package com.gebauz.burutaru.game.level;
public class CmdBgColor
extends BaseCommand
{
// Constants========================================================================================
// Embedded Types===================================================================================
// Fields===========================================================================================
public float r = 0.0f
;
public float g = 0.0f
;
public float b = 0.0f
;
// Methods==========================================================================================
public CmdBgColor
(Level level,
float atTime
)
{
super(level, atTime
);
}
@
Override
public void initAsync
()
{
// TODO Auto-generated method stub
}
@
Override
public void init
()
{
// TODO Auto-generated method stub
}
// Getters/Setters==================================================================================
}