mirror of
https://github.com/cyberarm/i-mic-rts.git
synced 2025-12-13 06:52:33 +00:00
16 lines
479 B
Ruby
16 lines
479 B
Ruby
class IMICRTS
|
|
TeamColors = {
|
|
lightred: Gosu::Color.rgb(255, 100, 100),
|
|
red: Gosu::Color::RED,
|
|
lightblue: Gosu::Color.rgb(100, 100, 255),
|
|
blue: Gosu::Color::BLUE,
|
|
lime: Gosu::Color::GREEN,
|
|
lightgreen: Gosu::Color.rgb(50, 200, 50),
|
|
green: Gosu::Color.rgb(0, 200, 0),
|
|
orange: Gosu::Color.rgb(255, 127, 0),
|
|
gold: Gosu::Color::YELLOW,
|
|
lightgray: Gosu::Color::WHITE,
|
|
gray: Gosu::Color::GRAY,
|
|
black: Gosu::Color.rgb(50, 50, 50),
|
|
}
|
|
end |