mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-17 16:39:42 +01:00
12 lines
339 B
ActionScript
12 lines
339 B
ActionScript
|
package {
|
||
|
public class EmbeddedAssets {
|
||
|
/* PNG texture */
|
||
|
[Embed(source = "../data/vvvvvv_graphics.png")]
|
||
|
public static const vvvvvv_graphics:Class;
|
||
|
|
||
|
/* XML file */
|
||
|
[Embed(source = "../data/vvvvvv_graphics.xml",
|
||
|
mimeType = "application/octet-stream")]
|
||
|
public static const vvvvvv_graphics_xml:Class;
|
||
|
}
|
||
|
}
|