11 lines
290 B
C#
11 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OpenRa.Game.Graphics
|
|
{
|
|
//Note: should match the ordering in HardwarePalette.cs
|
|
enum PaletteType { Gold, Blue, Red, Orange, Teal, Salmon, Green, Gray, Shadow, Invuln, Chrome };
|
|
}
|